diff --git a/src/dialogs/voice-command-dialog/ha-voice-command-dialog.ts b/src/dialogs/voice-command-dialog/ha-voice-command-dialog.ts index 7bf95f7c33..8f164875b7 100644 --- a/src/dialogs/voice-command-dialog/ha-voice-command-dialog.ts +++ b/src/dialogs/voice-command-dialog/ha-voice-command-dialog.ts @@ -394,7 +394,7 @@ export class HaVoiceCommandDialog extends LitElement { start_stage: "intent", input: { text }, end_stage: "intent", - pipeline: this._pipelineId, + pipeline: this._pipeline?.id, conversation_id: this._conversationId, } ); @@ -554,7 +554,7 @@ export class HaVoiceCommandDialog extends LitElement { start_stage: "stt", end_stage: this._pipeline?.tts_engine ? "tts" : "intent", input: { sample_rate: this._audioRecorder.sampleRate! }, - pipeline: this._pipelineId, + pipeline: this._pipeline?.id, conversation_id: this._conversationId, } );