diff --git a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs index a304b11b0..fe67cb727 100644 --- a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs +++ b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs @@ -59,9 +59,14 @@ public IList ParseResponse(IndexerResponse indexerResponse) flags |= IndexerFlags.PTP_Approved; } - if (torrent.FreeleechType == "Freeleech") + switch (torrent.FreeleechType?.ToUpperInvariant()) { - flags |= IndexerFlags.G_Freeleech; + case "FREELEECH": + flags |= IndexerFlags.G_Freeleech; + break; + case "HALF LEECH": + flags |= IndexerFlags.G_Halfleech; + break; } if (torrent.Scene)