mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-19 22:04:56 -04:00
Fixed: Parsing of 8 digit IMDb Ids
This commit is contained in:
@@ -93,7 +93,9 @@ namespace NzbDrone.Core.Parser
|
|||||||
return null;
|
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)
|
public static string GetArgumentFromQueryString(string url, string argument)
|
||||||
|
|||||||
Reference in New Issue
Block a user