Use extra release fields in PassThePopcorn parser

This commit is contained in:
Bogdan 2023-12-24 06:56:40 +02:00
parent b2300dbf41
commit bdc4aade0f
1 changed files with 4 additions and 0 deletions

View File

@ -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
});
}