We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7fec01 commit 9c7e787Copy full SHA for 9c7e787
dist/fast-search-card.js
@@ -12320,13 +12320,16 @@ class FastSearchCard extends HTMLElement {
12320
12321
try {
12322
// Versuche zuerst Amazon Polly
12323
- await this._hass.callService('tts', 'amazon_polly_say', {
+ console.log(`🎤 Calling Amazon Polly TTS...`);
12324
+
12325
+ // ✅ ÄNDERUNG: Nicht auf TTS warten
12326
+ this._hass.callService('tts', 'amazon_polly_say', {
12327
entity_id: entityId,
12328
message: text
12329
});
12330
- this.updateTTSButtonState('speaking');
12331
console.log('✅ Amazon Polly TTS called');
12332
+ this.updateTTSButtonState('speaking');
12333
12334
} catch (error) {
12335
console.warn('⚠️ Amazon Polly failed, trying fallback TTS:', error);
0 commit comments