as many digits as possible

This commit is contained in:
j 2019-07-23 16:39:41 +02:00
parent 0e21f9ebc1
commit b1e6e37b7e
2 changed files with 2 additions and 2 deletions

View file

@ -656,7 +656,7 @@ pandora.ui.infoView = function(data, isMixed) {
? Ox.decodeHTMLEntities(value).split('; ').map(Ox.encodeHTMLEntities) ? Ox.decodeHTMLEntities(value).split('; ').map(Ox.encodeHTMLEntities)
: []; : [];
} else if (key == 'imdbId') { } else if (key == 'imdbId') {
edit[key] = value ? value.match(/\d+?/)[0] : value; edit[key] = value ? value.match(/\d+/)[0] : value;
} else { } else {
edit[key] = value; edit[key] = value;
} }

View file

@ -406,7 +406,7 @@ pandora.ui.mediaView = function(options) {
var conditions, matches; var conditions, matches;
if (key == 'id' && data.value.substr(0, 2) != '0x') { if (key == 'id' && data.value.substr(0, 2) != '0x') {
if (pandora.site.site.id == '0xdb') { if (pandora.site.site.id == '0xdb') {
matches = data.value.match(/\d+?/); matches = data.value.match(/\d+/);
} else { } else {
matches = data.value.match(/[A-Z]+/); matches = data.value.match(/[A-Z]+/);
} }