catchup #13

Merged
toniwalter.green merged 16 commits from devel into main 2026-09-15 01:47:26 +02:00
Showing only changes of commit 911bbeaa66 - Show all commits
+1 -1
View File
@@ -29,7 +29,7 @@ export class App {
effect(() => { effect(() => {
const loggedIn = this.auth.loggedIn(); const loggedIn = this.auth.loggedIn();
if (!loggedIn) { if (!loggedIn) {
this.auth.login(); this.auth.login(window.location.pathname ?? undefined);
} }
}); });
} }