mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
Rename disable* settings to enable* and consolidated 1 setting
This commit is contained in:
parent
c90dbcdf3b
commit
561fda297e
18 changed files with 285 additions and 164 deletions
|
|
@ -182,7 +182,9 @@ export async function startInteractiveUI(
|
|||
},
|
||||
);
|
||||
|
||||
if (!settings.merged.general?.disableUpdateNag) {
|
||||
// Check for updates only if enableAutoUpdate is not explicitly disabled.
|
||||
// Using !== false ensures updates are enabled by default when undefined.
|
||||
if (settings.merged.general?.enableAutoUpdate !== false) {
|
||||
checkForUpdates()
|
||||
.then((info) => {
|
||||
handleAutoUpdate(info, settings, config.getProjectRoot());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue