From 3ab4cfa35dc732fdf5491cb571ea9d3a097680b2 Mon Sep 17 00:00:00 2001 From: Kento Nishi Date: Sat, 23 May 2026 20:29:49 -0400 Subject: [PATCH] fix livetl reply thread type --- src/scripts/chat-interceptor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/chat-interceptor.ts b/src/scripts/chat-interceptor.ts index 9a6cce7d..0e7ba8ca 100644 --- a/src/scripts/chat-interceptor.ts +++ b/src/scripts/chat-interceptor.ts @@ -114,7 +114,7 @@ const chatLoaded = async (): Promise => { }; // eslint-disable-next-line @typescript-eslint/no-misused-promises - port.onMessage.addListener(async (msg) => { + port.onMessage.addListener(async (msg: Chat.BackgroundMessage | Chat.BackgroundResponse) => { const getCookie = (name: string): string => { const value = `; ${document.cookie}`; const parts = value.split(`; ${name}=`);