Merge pull request #2523 from sam-s10s/fix/connection-none

Speechmatics TTS connection issue
This commit is contained in:
Mark Backman
2025-08-27 08:09:46 -07:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -105,6 +105,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed a `CartesiaTTSService` issue that was causing the application to hang
after Cartesia's 5 minutes timed out.
- Fixed an issue preventing `SpeechmaticsSTTService` from transcribing audio.
## [0.0.81] - 2025-08-25
### Added

View File

@@ -581,7 +581,6 @@ class SpeechmaticsSTTService(STTService):
logger.debug(f"{self} Connected to Speechmatics STT service")
except Exception as e:
logger.error(f"{self} Error connecting to Speechmatics: {e}")
finally:
self._client = None
async def _disconnect(self) -> None: