Fix screenshot message selector (.message not .chat-message)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Nico 2026-04-03 00:28:06 +02:00
parent dc1b120b4d
commit 2267cfb640

View File

@ -191,7 +191,7 @@ export function useTakeover(wsSend: (msg: any) => void) {
text: (a as HTMLElement).innerText?.slice(0, 80), text: (a as HTMLElement).innerText?.slice(0, 80),
})); }));
})(), })(),
messages: document.querySelectorAll('.chat-message').length, messages: document.querySelectorAll('.message').length,
}; };
} }