diff --git a/homeway/homeway_linuxhost/sage/sagetranscribehandler.py b/homeway/homeway_linuxhost/sage/sagetranscribehandler.py index 6c1b9f9..b740984 100644 --- a/homeway/homeway_linuxhost/sage/sagetranscribehandler.py +++ b/homeway/homeway_linuxhost/sage/sagetranscribehandler.py @@ -105,7 +105,7 @@ async def HandleStreamingAudio(self, event: Event) -> bool: # This will not block on a response, it will just send the audio. start = time.time() - result = await self.FiberManager.Listen(False, self.Buffer, SageDataTypesFormats.AudioPCM, self.IncomingAudioStartEvent.rate, self.IncomingAudioStartEvent.channels, self.IncomingAudioStartEvent.width, self.self.TranscribeLanguage_CanBeNone) + result = await self.FiberManager.Listen(False, self.Buffer, SageDataTypesFormats.AudioPCM, self.IncomingAudioStartEvent.rate, self.IncomingAudioStartEvent.channels, self.IncomingAudioStartEvent.width, self.TranscribeLanguage_CanBeNone) deltaSec = time.time() - start # If None is returned, the stream failed.