mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-03-05 13:40:08 -05:00
Fixed: Parsing of 8 digit IMDb Ids
This commit is contained in:
@@ -93,7 +93,9 @@ namespace NzbDrone.Core.Parser
|
||||
return null;
|
||||
}
|
||||
|
||||
return "tt" + ((int)imdbid).ToString("D7");
|
||||
var imdbLen = ((int)imdbid > 9999999) ? "D8" : "D7";
|
||||
|
||||
return "tt" + ((int)imdbid).ToString(imdbLen);
|
||||
}
|
||||
|
||||
public static string GetArgumentFromQueryString(string url, string argument)
|
||||
|
||||
Reference in New Issue
Block a user