diff --git a/CHANGELOG.md b/CHANGELOG.md index edfe1d346..6073b8224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ - Hooks: allow per-hook model overrides for webhook/Gmail runs (e.g. GPT 5 Mini). - Control UI: logs tab opens at the newest entries (bottom). - Control UI: add Docs link, remove chat composer divider, and add New session button. +- Control UI: link sessions list to chat view. (#471) — thanks @HazAT - Control UI: queue outgoing chat messages, add Enter-to-send, and show queued items. (#527) — thanks @YuriNachos - Telegram: retry long-polling conflicts with backoff to avoid fatal exits. - Telegram: fix grammY fetch type mismatch when injecting `fetch`. (#512) — thanks @YuriNachos diff --git a/ui/src/ui/app.ts b/ui/src/ui/app.ts index d1b0a954f..f26a40315 100644 --- a/ui/src/ui/app.ts +++ b/ui/src/ui/app.ts @@ -825,14 +825,12 @@ export class ClawdbotApp extends LitElement { const tokenRaw = params.get("token"); const passwordRaw = params.get("password"); const sessionRaw = params.get("session"); - let changed = false; let shouldCleanUrl = false; if (tokenRaw != null) { const token = tokenRaw.trim(); if (token && !this.settings.token) { this.applySettings({ ...this.settings, token }); - changed = true; } params.delete("token"); shouldCleanUrl = true; @@ -842,7 +840,6 @@ export class ClawdbotApp extends LitElement { const password = passwordRaw.trim(); if (password) { this.password = password; - changed = true; } params.delete("password"); shouldCleanUrl = true; @@ -852,7 +849,6 @@ export class ClawdbotApp extends LitElement { const session = sessionRaw.trim(); if (session) { this.sessionKey = session; - changed = true; } params.delete("session"); shouldCleanUrl = true;