Prevent the user from changing the metadata format if the server has set force_save_metadata

This commit is contained in:
cmdr2
2023-09-30 20:11:28 +05:30
parent 4c8d5a7077
commit e999832c26
2 changed files with 6 additions and 2 deletions

View File

@ -740,10 +740,13 @@ async function getSystemInfo() {
force = res["enforce_output_dir"]
if (force == true) {
saveToDiskField.checked = true
metadataOutputFormatField.disabled = false
metadataOutputFormatField.disabled = res["enforce_output_metadata"]
diskPathField.disabled = true
}
saveToDiskField.disabled = force
diskPathField.disabled = force
} else {
diskPathField.disabled = !saveToDiskField.checked
metadataOutputFormatField.disabled = !saveToDiskField.checked
}
setDiskPath(res["default_output_dir"], force)
} catch (e) {