mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
fix file name casing
This commit is contained in:
parent
07d6d245d1
commit
122f1949f1
@ -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") {
|
||||
|
@ -352,7 +352,14 @@ $(document).on('pageshow', ".mediaLibraryPage", MediaLibraryPage.onPageShow);
|
||||
$('.btnRefresh', page).buttonEnabled(task.State == 'Idle').attr('data-taskid', task.Id);
|
||||
|
||||
var progress = (task.CurrentProgressPercentage || 0).toFixed(1);
|
||||
$('.refreshProgress', page).val(progress);
|
||||
var progressElem = $('.refreshProgress', page).val(progress);
|
||||
|
||||
if (task.State == 'Running') {
|
||||
progressElem.show();
|
||||
} else {
|
||||
progressElem.hide();
|
||||
}
|
||||
|
||||
var lastResult = task.LastExecutionResult ? task.LastExecutionResult.Status : '';
|
||||
|
||||
if (lastResult == "Failed") {
|
||||
|
Loading…
Reference in New Issue
Block a user