Merge pull request #3438 from techAPJ/patch-2

FIX: show youtube URL if title is undefined
This commit is contained in:
Régis Hanol 2015-05-08 19:23:33 +02:00
commit f20f9d76a5
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@
innerHtml.push('<div class="html5-title">');
innerHtml.push('<div class="html5-title-text-wrapper">');
innerHtml.push('<a class="html5-title-text" target="_blank" tabindex="3100" href="https://www.youtube.com/watch?v=', id, '">');
if (title === null || title === '') {
if (title === undefined || title === null || title === '') {
innerHtml.push('https://www.youtube.com/watch?v=' + id);
} else {
innerHtml.push(title);