mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
Add tests and ignore 0 in GetFullImdbId
This commit is contained in:
@@ -213,7 +213,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
Files = item.Value<int>("numfiles"),
|
||||
Seeders = item.Value<int>("seeders"),
|
||||
Peers = item.Value<int>("leechers") + item.Value<int>("seeders"),
|
||||
ImdbId = ParseUtil.GetImdbID(item.Value<string>("imdbid")) ?? 0,
|
||||
ImdbId = ParseUtil.GetImdbId(item.Value<string>("imdbid")) ?? 0,
|
||||
MinimumRatio = 1,
|
||||
MinimumSeedTime = 0,
|
||||
DownloadVolumeFactor = dlVolumeFactor,
|
||||
|
||||
Reference in New Issue
Block a user