Skip to content

Commit

Permalink
Merge branch 'rc'
Browse files Browse the repository at this point in the history
  • Loading branch information
bramkragten committed Dec 20, 2024
2 parents 9364ea0 + 5470c8f commit cd44b33
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "home-assistant-frontend"
version = "20241127.8"
version = "20241127.9"
license = {text = "Apache-2.0"}
description = "The Home Assistant frontend"
readme = "README.md"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,8 @@ export class HaVoiceAssistantSetupStepLocal extends LitElement {

if (preferredPipeline) {
if (
preferredPipeline.conversation_engine ===
"conversation.home_assistant" &&
preferredPipeline.tts_engine &&
ttsEntityIds.includes(preferredPipeline.tts_engine) &&
preferredPipeline.stt_engine &&
Expand All @@ -311,6 +313,7 @@ export class HaVoiceAssistantSetupStepLocal extends LitElement {

let localPipeline = pipelines.pipelines.find(
(pipeline) =>
pipeline.conversation_engine === "conversation.home_assistant" &&
pipeline.tts_engine &&
ttsEntityIds.includes(pipeline.tts_engine) &&
pipeline.stt_engine &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ export class HaVoiceAssistantSetupStepPipeline extends LitElement {

if (preferredPipeline) {
if (
preferredPipeline.conversation_engine ===
"conversation.home_assistant" &&
preferredPipeline.tts_engine === cloudTtsEntityId &&
preferredPipeline.stt_engine === cloudSttEntityId
) {
Expand All @@ -229,6 +231,7 @@ export class HaVoiceAssistantSetupStepPipeline extends LitElement {

let cloudPipeline = pipelines.pipelines.find(
(pipeline) =>
pipeline.conversation_engine === "conversation.home_assistant" &&
pipeline.tts_engine === cloudTtsEntityId &&
pipeline.stt_engine === cloudSttEntityId
);
Expand Down

0 comments on commit cd44b33

Please sign in to comment.