forked from 0x2620/pandora
no director is empty array, not falsy
This commit is contained in:
parent
d5e36b6296
commit
d73dc8eb52
1 changed files with 6 additions and 2 deletions
|
@ -824,8 +824,12 @@ pandora.getClipVideos = function(clip, resolution) {
|
||||||
if (itemData) {
|
if (itemData) {
|
||||||
itemTitles[pandora.user.ui.item] = Ox.decodeHTMLEntities(
|
itemTitles[pandora.user.ui.item] = Ox.decodeHTMLEntities(
|
||||||
(itemData.title || Ox._('Untitled')) + (
|
(itemData.title || Ox._('Untitled')) + (
|
||||||
itemData.director || itemData.year
|
Ox.len(itemData.director) || itemData.year
|
||||||
? ' (' + (itemData.director || [Ox._('Unknown Director')]).join(', ') + ')'
|
? ' (' + (
|
||||||
|
Ox.len(itemData.director)
|
||||||
|
? itemData.director
|
||||||
|
: [Ox._('Unknown Director')]
|
||||||
|
).join(', ') + ')'
|
||||||
: ''
|
: ''
|
||||||
) + (itemData.year ? ' ' + itemData.year : '')
|
) + (itemData.year ? ' ' + itemData.year : '')
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue