1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix file name casing

This commit is contained in:
Luke Pulverenti 2014-03-16 18:08:23 -04:00
parent 07d6d245d1
commit 122f1949f1
2 changed files with 16 additions and 2 deletions

View file

@ -179,7 +179,14 @@
$('.btnRefreshGuide', page).buttonEnabled(task.State == 'Idle').attr('data-taskid', task.Id);
var progress = (task.CurrentProgressPercentage || 0).toFixed(1);
$('.refreshGuideProgress', page).val(progress);
var progressElem = $('.refreshGuideProgress', page).val(progress);
if (task.State == 'Running') {
progressElem.show();
} else {
progressElem.hide();
}
var lastResult = task.LastExecutionResult ? task.LastExecutionResult.Status : '';
if (lastResult == "Failed") {