mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 16:58:06 -06:00
Disallow setting a blank alternative WebUI location
This commit is contained in:
@@ -1667,8 +1667,14 @@
|
||||
settings.set('bypass_auth_subnet_whitelist', $('bypass_auth_subnet_whitelist_textarea').getProperty('value'));
|
||||
|
||||
// Use alternative Web UI
|
||||
settings.set('alternative_webui_enabled', $('use_alt_webui_checkbox').getProperty('checked'));
|
||||
settings.set('alternative_webui_path', $('webui_files_location_textarea').getProperty('value'));
|
||||
var alternative_webui_enabled = $('use_alt_webui_checkbox').getProperty('checked');
|
||||
var webui_files_location_textarea = $('webui_files_location_textarea').getProperty('value');
|
||||
if (alternative_webui_enabled && (webui_files_location_textarea.trim() === "")) {
|
||||
alert("QBT_TR(The alternative Web UI files location cannot be blank.)QBT_TR[CONTEXT=OptionsDialog]");
|
||||
return;
|
||||
}
|
||||
settings.set('alternative_webui_enabled', alternative_webui_enabled);
|
||||
settings.set('alternative_webui_path', webui_files_location_textarea);
|
||||
|
||||
settings.set('web_ui_clickjacking_protection_enabled', $('clickjacking_protection_checkbox').getProperty('checked'));
|
||||
settings.set('web_ui_csrf_protection_enabled', $('csrf_protection_checkbox').getProperty('checked'));
|
||||
|
||||
Reference in New Issue
Block a user