From bdc4aade0f4a9f5acf43c9b808d79b41226141b6 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 24 Dec 2023 06:56:40 +0200 Subject: [PATCH] Use extra release fields in PassThePopcorn parser --- .../Indexers/PassThePopcorn/PassThePopcornParser.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs index fe67cb727..b21ee8e05 100644 --- a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs +++ b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs @@ -91,6 +91,10 @@ namespace NzbDrone.Core.Indexers.PassThePopcorn Scene = torrent.Scene, Approved = torrent.Checked, ImdbId = result.ImdbId.IsNotNullOrWhiteSpace() ? int.Parse(result.ImdbId) : 0, + Source = torrent.Source, + Container = torrent.Container, + Codec = torrent.Codec, + Resolution = torrent.Resolution, IndexerFlags = flags }); }