From 60256138a9c17dfcff9818838abe0a5315751e7c Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 11 Mar 2026 12:06:56 +0100 Subject: [PATCH] fix(shell): log IPC ERROR responses to console --- infra/shell/system-ui.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/infra/shell/system-ui.html b/infra/shell/system-ui.html index f59a018..d601faa 100644 --- a/infra/shell/system-ui.html +++ b/infra/shell/system-ui.html @@ -301,6 +301,8 @@ }); } else if (msg.type === 'LAUNCH_ACK') { ensureTaskbarEntry(msg.session_id, msg.app_id || null); + } else if (msg.type === 'ERROR') { + console.warn('appd error', msg.code, msg.message); } }