Compare commits

1 Commits

Author SHA1 Message Date
bb47cb691c Fixed Transcript error when receiving the response 2025-09-09 22:33:40 +02:00

View File

@@ -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