From 8f24f45090120038c3b942a99ff815a224bdb201 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 4 Jun 2025 16:12:43 +0100 Subject: [PATCH] Need to return false here too --- src/store.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/store.ts b/src/store.ts index bf7069932f..cb6ebcc6c3 100644 --- a/src/store.ts +++ b/src/store.ts @@ -329,7 +329,9 @@ class Store extends ElectronStore { relaunchApp(); return false; } else { + // This will either relaunch the app or throw an execption await this.consultUserBackendChangedUnableToMigrate(electronSession); + return false; } }