mirror of
https://github.com/Jackett/Jackett
synced 2025-03-06 03:38:31 +00:00
animebytes: allow prop in infostring, but don't parse for RLSGRP
This commit is contained in:
parent
453e0ae7e7
commit
dc7359c6c4
1 changed files with 2 additions and 3 deletions
|
@ -44,8 +44,7 @@ namespace Jackett.Common.Indexers
|
||||||
|
|
||||||
private readonly HashSet<string> _excludedProperties = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
|
private readonly HashSet<string> _excludedProperties = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
|
||||||
{
|
{
|
||||||
"Freeleech",
|
"Freeleech"
|
||||||
"Hentai"
|
|
||||||
};
|
};
|
||||||
|
|
||||||
private ConfigurationDataAnimeBytes ConfigData => (ConfigurationDataAnimeBytes)configData;
|
private ConfigurationDataAnimeBytes ConfigData => (ConfigurationDataAnimeBytes)configData;
|
||||||
|
@ -491,7 +490,7 @@ namespace Jackett.Common.Indexers
|
||||||
}
|
}
|
||||||
|
|
||||||
// We don't actually have a release name >.> so try to create one
|
// We don't actually have a release name >.> so try to create one
|
||||||
var releaseGroup = properties.LastOrDefault();
|
var releaseGroup = properties.LastOrDefault(p => !p.ContainsIgnoreCase("Hentai"));
|
||||||
|
|
||||||
if (releaseGroup.IsNotNullOrWhiteSpace() && releaseGroup.Contains("(") && releaseGroup.Contains(")"))
|
if (releaseGroup.IsNotNullOrWhiteSpace() && releaseGroup.Contains("(") && releaseGroup.Contains(")"))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue