Release v1.6.3

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-04 05:54:41 +01:00
co-authored by Claude Opus 4.6
parent 1d4a13466f
commit 693f7b482a
4 changed files with 31 additions and 23 deletions
+3
View File
@@ -286,6 +286,9 @@ export class AppController {
this.settings = restoredSettings;
saveSettings(this.storagePaths, this.settings);
this.manager.setSettings(this.settings);
// Stop the manager BEFORE saving the restored session to prevent
// the auto-save timer from overwriting it with the old in-memory session.
this.manager.stop();
const restoredSession = parsed.session as ReturnType<typeof loadSession>;
saveSession(this.storagePaths, restoredSession);
return { restored: true, message: "Backup wiederhergestellt. Bitte App neustarten." };