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 @@ public IList ParseResponse(IndexerResponse indexerResponse) 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 }); }