mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
isolated clickonce dependancies
This commit is contained in:
@@ -119,8 +119,7 @@
|
||||
}
|
||||
else if (task.State == "Running") {
|
||||
|
||||
var progress = task.CurrentProgress || { PercentComplete: 0 };
|
||||
progress = Math.round(progress.PercentComplete);
|
||||
var progress = Math.round(task.CurrentProgressPercentage || 0);
|
||||
|
||||
html += '<p><progress max="100" value="' + progress + '" title="' + progress + '%">';
|
||||
html += '' + progress + '%';
|
||||
|
||||
Reference in New Issue
Block a user