mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-17 02:10:48 +02:00
Fixed: (FileList) Parsing poorly padded IMDb Ids
This commit is contained in:
parent
f5790bec2e
commit
4c4b16d234
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
|
|||
var imdbId = 0;
|
||||
if (row.ImdbId is { Length: > 2 })
|
||||
{
|
||||
imdbId = int.Parse(row.ImdbId.Substring(2));
|
||||
int.TryParse(row.ImdbId.TrimStart('t'), out imdbId);
|
||||
}
|
||||
|
||||
var downloadVolumeFactor = row.FreeLeech ? 0 : 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue