mirror of
https://github.com/Jackett/Jackett
synced 2025-02-22 14:20:57 +00:00
Revert "parseutil: fix #6101 for 8 digit imdbid support"
This reverts commit 0a03ca1977
.
This commit is contained in:
parent
1c449e59f5
commit
2a7ca0803a
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ namespace Jackett.Common.Utils
|
|||
if (imdbid == null)
|
||||
return null;
|
||||
|
||||
return "tt" + ((int)imdbid).ToString("D8");
|
||||
return "tt" + ((int)imdbid).ToString("D7");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue