mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
move download images in advance option from global to per library
This commit is contained in:
parent
13096410b0
commit
7a2ba6f131
5 changed files with 20 additions and 13 deletions
|
@ -9,7 +9,6 @@
|
|||
page.querySelector('#chkSaveLocal').checked = config.SaveLocalMeta;
|
||||
$('#selectLanguage', page).val(config.PreferredMetadataLanguage);
|
||||
$('#selectCountry', page).val(config.MetadataCountryCode);
|
||||
$('#chkDownloadImagesInAdvance', page).checked(config.DownloadImagesInAdvance);
|
||||
|
||||
Dashboard.hideLoadingMsg();
|
||||
}
|
||||
|
@ -25,7 +24,6 @@
|
|||
config.SaveLocalMeta = form.querySelector('#chkSaveLocal').checked;
|
||||
config.PreferredMetadataLanguage = $('#selectLanguage', form).val();
|
||||
config.MetadataCountryCode = $('#selectCountry', form).val();
|
||||
config.DownloadImagesInAdvance = $('#chkDownloadImagesInAdvance', form).checked();
|
||||
|
||||
ApiClient.updateServerConfiguration(config).then(function() {
|
||||
Dashboard.processServerConfigurationUpdateResult();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue