mirror of
https://github.com/Jackett/Jackett
synced 2025-02-23 14:51:01 +00:00
custom: support 8 digit imdbid
This commit is contained in:
parent
7d9047cf14
commit
3c7415e8df
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ function updateReleasesRow(row)
|
|||
labels.empty();
|
||||
|
||||
if (IMDBId) {
|
||||
labels.append('\n<a href="http://www.imdb.com/title/tt' + ("000000" + IMDBId).slice(-7) + '/" class="label label-imdb" alt="IMDB" title="IMDB">IMDB</a>');
|
||||
labels.append('\n<a href="http://www.imdb.com/title/tt' + ("0000000" + IMDBId).slice(-8) + '/" class="label label-imdb" alt="IMDB" title="IMDB">IMDB</a>');
|
||||
}
|
||||
|
||||
if (!isNaN(DownloadVolumeFactor)) {
|
||||
|
|
Loading…
Reference in a new issue