mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
probe live streams after opening
This commit is contained in:
parent
15f702af52
commit
beb21adecf
6 changed files with 43 additions and 9 deletions
|
@ -3,6 +3,7 @@
|
|||
function loadPage(page, config) {
|
||||
|
||||
$('#txtSyncTempPath', page).val(config.TemporaryPath || '');
|
||||
$('#txtUploadSpeedLimit', page).val(config.UploadSpeedLimitBytes / 1000000);
|
||||
|
||||
Dashboard.hideLoadingMsg();
|
||||
}
|
||||
|
@ -51,6 +52,7 @@
|
|||
ApiClient.getNamedConfiguration("sync").done(function (config) {
|
||||
|
||||
config.TemporaryPath = $('#txtSyncTempPath', form).val();
|
||||
config.UploadSpeedLimitBytes = parseInt(parseFloat(($('#txtUploadSpeedLimit', form).val() || '0')) * 1000000);
|
||||
|
||||
ApiClient.updateNamedConfiguration("sync", config).done(Dashboard.processServerConfigurationUpdateResult);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue