fix edit sort

This commit is contained in:
j 2019-11-06 16:27:21 +01:00
commit b6aee5e0f1
2 changed files with 16 additions and 3 deletions

View file

@ -0,0 +1,13 @@
'use strict';
pandora.getItemTitle = function(itemData, includeDate) {
return (itemData.title || Ox._('Untitled')) + (
Ox.len(itemData.director) || (includeDate && itemData.date)
? ' (' + (
Ox.len(itemData.director)
? itemData.director
: []
).join(', ') + ')'
: ''
) + (includeDate && itemData.date ? ' ' + itemData.date : '')
};