From bb47cb691c0f8ee2d57378defee5a841c4122e87 Mon Sep 17 00:00:00 2001 From: Kodjo Sossouvi Date: Tue, 9 Sep 2025 22:33:40 +0200 Subject: [PATCH] Fixed Transcript error when receiving the response --- src/commands/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/server.py b/src/commands/server.py index f8b5dc9..088c28d 100644 --- a/src/commands/server.py +++ b/src/commands/server.py @@ -51,7 +51,7 @@ async def _async_transcribe(host: str, port: int, timeout: float, pcm_bytes: byt if event is None: break - if Transcript.is_type(event): + if Transcript.is_type(event.type): tr = Transcript.from_event(event) transcript_text = tr.text break