fix(offline): cold-boot offline from the persisted session + profile #199

Merged
developer merged 5 commits from feature/offline-boot into development 2026-07-06 14:25:11 +00:00
Showing only changes of commit fdf14d5897 - Show all commits
+3 -1
View File
@@ -112,7 +112,9 @@
);
onMount(async () => {
if (guest) return;
// Offline mode offers only the local vs_ai flow (the friends section is hidden), and the network
// is off, so skip the friend fetch — it would be refused by the transport and toast an error.
if (guest || offlineMode.active) return;
try {
friends = await gateway.friendsList();
} catch (e) {