diff --git a/static/js/pandora/status.js b/static/js/pandora/status.js index 510e5990f..f79e5aa12 100644 --- a/static/js/pandora/status.js +++ b/static/js/pandora/status.js @@ -12,7 +12,9 @@ pandora.ui.status = function(key, data) { segments.push(Ox.formatDuration(data.runtime, 'short')); if (data.files) segments.push(data.files + ' file' + (data.files != 1 ? 's' : '')); - if (data.duration) + if (!data.runtime && data.duration) + segments.push(Ox.formatDuration(data.duration, 'short')); + else if (data.duration) segments.push(Ox.formatDuration(data.duration)); if (data.size) segments.push(Ox.formatValue(data.size, 'B'));