From d0832013feb6eb98a8a3e7562f029c2f731ece83 Mon Sep 17 00:00:00 2001 From: John Coffey Date: Tue, 22 Sep 2026 15:21:35 -0700 Subject: [PATCH] Lowercase the tab title's fallback name The title the tab falls back to before the session names the app was the one user-visible string the brand pass missed; setBaseTitle overwrites it as soon as the session arrives, so it shows only for that first moment. --- web/src/lib/notify/notify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/notify/notify.ts b/web/src/lib/notify/notify.ts index 3790578..3cb013e 100644 --- a/web/src/lib/notify/notify.ts +++ b/web/src/lib/notify/notify.ts @@ -1,6 +1,6 @@ import { withBase } from "../basePath"; -let baseTitle = "INBUXA"; +let baseTitle = "inbuxa"; let faviconCanvas: HTMLCanvasElement | null = null; let baseFavicon: HTMLImageElement | null = null;