You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Control UI/Talk: stop and clear failed realtime Talk sessions when dismissing runtime error banners, so the next Talk click starts a fresh session instead of only stopping the stale one. Thanks @vincentkoc.
65
65
- Control UI/Talk: retry from a failed realtime Talk session on the next Talk click instead of requiring a separate stale-session stop click first. Thanks @vincentkoc.
66
66
- Canvas host: preserve the Gateway TLS scheme in browser canvas host URLs and startup mount logs, so direct HTTPS gateways do not advertise insecure canvas links. Thanks @vincentkoc.
67
+
- WhatsApp/login: route login success and failure messages through the injected runtime, so setup/onboarding surfaces capture all login output instead of only the QR. Thanks @vincentkoc.
67
68
- Google Chat: create an isolated Google auth transport per auth client, so google-auth-library interceptor mutations do not accumulate across webhook verification and access-token clients. Thanks @vincentkoc.
68
69
- Doctor/plugins: remove orphaned managed npm copies of bundled `@openclaw/*` plugins during `doctor --fix`, so stale package manifests cannot shadow the current bundled plugin config schema.
69
70
- Control UI/performance: cap long-task and long-animation-frame diagnostics in the shared event log, so slow-render telemetry does not evict gateway/plugin events from the Debug and Overview views. Thanks @vincentkoc.
Copy file name to clipboardExpand all lines: extensions/whatsapp/src/login.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ export async function loginWeb(
51
51
},
52
52
});
53
53
if(result.outcome==="connected"){
54
-
console.log(
54
+
runtime.log(
55
55
success(
56
56
result.restarted
57
57
? "✅ Linked after restart; web session ready."
@@ -64,7 +64,7 @@ export async function loginWeb(
64
64
}
65
65
66
66
if(result.outcome==="logged-out"){
67
-
console.error(
67
+
runtime.error(
68
68
danger(
69
69
`WhatsApp reported the session is logged out. Cleared cached web session; please rerun ${formatCliCommand("openclaw channels login")} and scan the QR again.`,
70
70
),
@@ -74,7 +74,7 @@ export async function loginWeb(
74
74
});
75
75
}
76
76
77
-
console.error(danger(`WhatsApp Web connection ended before fully opening. ${result.message}`));
77
+
runtime.error(danger(`WhatsApp Web connection ended before fully opening. ${result.message}`));
0 commit comments