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

798f8d92a3cd3085400e8176033bc67f73c4a702

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -1Ignore whitespace
public/script.js+2 -1
@@ -7076,7 +7076,8 @@ function selectKoboldGuiPreset() {
70767076
7077export async function saveSettings(loopCounter = 0) {7077export async function saveSettings(loopCounter = 0) {
7078 if (!settingsReady) {7078 if (!settingsReady) {
7079 console.warn('Settings not ready, aborting save');7079 console.warn('Settings not ready, scheduling another save');
7080 saveSettingsDebounced();
7080 return;7081 return;
7081 }7082 }
70827083