mirror of
https://github.com/Radarr/Radarr
synced 2025-02-23 06:41:20 +00:00
Fixed: (PassThePopcorn) Support for half leech releases
This commit is contained in:
parent
d7aaa1cdc2
commit
3f444406da
1 changed files with 7 additions and 2 deletions
|
@ -59,9 +59,14 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
|
|||
flags |= IndexerFlags.PTP_Approved;
|
||||
}
|
||||
|
||||
if (torrent.FreeleechType == "Freeleech")
|
||||
switch (torrent.FreeleechType?.ToUpperInvariant())
|
||||
{
|
||||
case "FREELEECH":
|
||||
flags |= IndexerFlags.G_Freeleech;
|
||||
break;
|
||||
case "HALF LEECH":
|
||||
flags |= IndexerFlags.G_Halfleech;
|
||||
break;
|
||||
}
|
||||
|
||||
if (torrent.Scene)
|
||||
|
|
Loading…
Reference in a new issue