From c821541a2f78c571caff53bebd79676f6c1e3bf2 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Fri, 4 Apr 2025 21:54:43 +0300 Subject: [PATCH] Fixed: (PTP) Parse neutral leech releases --- .../Indexers/PassThePopcorn/PassThePopcornParser.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs index b21ee8e059..35e4e059e2 100644 --- a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs +++ b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs @@ -62,6 +62,7 @@ public IList ParseResponse(IndexerResponse indexerResponse) switch (torrent.FreeleechType?.ToUpperInvariant()) { case "FREELEECH": + case "NEUTRAL LEECH": flags |= IndexerFlags.G_Freeleech; break; case "HALF LEECH":