mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 08:15:00 +00:00
Merge pull request #3438 from techAPJ/patch-2
FIX: show youtube URL if title is undefined
This commit is contained in:
commit
f20f9d76a5
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user