1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

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

View File

@ -91,6 +91,10 @@ public IList<ReleaseInfo> 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
});
}