Update saveSettings function to schedule another save when settings are not ready

This commit is contained in:
Cohee
2025-02-12 10:43:19 +02:00
parent d4061cc139
commit 798f8d92a3

View File

@@ -7076,7 +7076,8 @@ function selectKoboldGuiPreset() {
export async function saveSettings(loopCounter = 0) {
if (!settingsReady) {
console.warn('Settings not ready, aborting save');
console.warn('Settings not ready, scheduling another save');
saveSettingsDebounced();
return;
}