Spaces:
Running
Running
Update flare-ui/src/app/services/conversation-manager.service.ts
Browse files
flare-ui/src/app/services/conversation-manager.service.ts
CHANGED
@@ -330,11 +330,11 @@ export class ConversationManagerService implements OnDestroy {
|
|
330 |
// Clear transcription when starting to listen
|
331 |
this.transcriptionSubject.next('');
|
332 |
} else if (to === 'playing_audio') {
|
333 |
-
//
|
334 |
-
|
335 |
-
} else if (to === '
|
336 |
-
//
|
337 |
-
this.
|
338 |
}
|
339 |
}
|
340 |
|
|
|
330 |
// Clear transcription when starting to listen
|
331 |
this.transcriptionSubject.next('');
|
332 |
} else if (to === 'playing_audio') {
|
333 |
+
// TTS playing - visualization should be OFF
|
334 |
+
console.log('🔊 Playing audio - visualization should be inactive');
|
335 |
+
} else if (to === 'idle') {
|
336 |
+
// Clear any remaining transcription
|
337 |
+
this.transcriptionSubject.next('');
|
338 |
}
|
339 |
}
|
340 |
|