FIX: show youtube URL if title is undefined

This commit is contained in:
Arpit Jalan 2015-05-08 22:50:31 +05:30
parent 4da6124fa5
commit 597dc2f0b6
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);