From c6eded0b4844a5d6fff8e73764da8320b7cf20b5 Mon Sep 17 00:00:00 2001 From: deadRabbit Date: Sun, 22 Feb 2026 14:08:03 +0100 Subject: [PATCH] Fix: move proxy-mode log out of try-block variable scope Co-Authored-By: Claude Sonnet 4.6 --- backend/src/websocket/rdp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/websocket/rdp.ts b/backend/src/websocket/rdp.ts index f1c20f7..81064a5 100644 --- a/backend/src/websocket/rdp.ts +++ b/backend/src/websocket/rdp.ts @@ -189,7 +189,7 @@ export async function rdpWebsocket(fastify: FastifyInstance) { return; } - fastify.log.info({ uuid: readyInstruction[1] }, 'RDP: entering proxy mode'); + fastify.log.info('RDP: entering proxy mode'); // --- Proxy mode --- guacd.on('data', (data: Buffer) => {