Skip to content

Commit

Permalink
partial fix 2 for #80 #74
Browse files Browse the repository at this point in the history
  • Loading branch information
vankasteelj committed May 3, 2021
1 parent c8717a8 commit 369aa37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/js/main/interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ const Interface = {
console.debug('Adding IMDB id to main form');

// add leading 'tt'
id = id > 9999999 ? id : 'tt' + id.toString().replace('tt', ''); // id over 9999999 is not imdb, but custom OS id
id = id > 99999999 ? id : 'tt' + id.toString().replace('tt', ''); // id over 99999999 is not imdb, but custom OS id

// display the value
$('#imdbid').val(id);
Expand Down

0 comments on commit 369aa37

Please sign in to comment.