mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
New: (Shazbat) Add scene indexer flag to all releases
This commit is contained in:
parent
ac487f9b40
commit
53adfb750c
1 changed files with 5 additions and 0 deletions
|
@ -102,6 +102,10 @@ public class Shazbat : TorrentIndexerBase<ShazbatSettings>
|
|||
TvSearchParams = new List<TvSearchParam>
|
||||
{
|
||||
TvSearchParam.Q
|
||||
},
|
||||
Flags = new List<IndexerFlag>
|
||||
{
|
||||
IndexerFlag.Scene
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -335,6 +339,7 @@ public class ShazbatParser : IParseIndexerResponse
|
|||
Seeders = seeders,
|
||||
Peers = seeders + leechers,
|
||||
PublishDate = publishDate,
|
||||
IndexerFlags = new HashSet<IndexerFlag> { IndexerFlag.Scene },
|
||||
Genres = row.QuerySelectorAll("label.label-tag").Select(t => t.TextContent.Trim()).ToList(),
|
||||
DownloadVolumeFactor = hasGlobalFreeleech ? 0 : 1,
|
||||
UploadVolumeFactor = 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue