From dacdcafd356e42717c82d54e0f0bd2b004f88875 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 8 Oct 2025 17:35:58 -0500 Subject: [PATCH] ensure feature is enabled globally --- frigate/embeddings/maintainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/embeddings/maintainer.py b/frigate/embeddings/maintainer.py index ca2fa9534..55e3d57ba 100644 --- a/frigate/embeddings/maintainer.py +++ b/frigate/embeddings/maintainer.py @@ -215,7 +215,7 @@ class EmbeddingMaintainer(threading.Thread): ) ) - if any( + if self.config.audio_transcription.enabled and any( c.enabled_in_config and c.audio_transcription.enabled for c in self.config.cameras.values() ):