Skip to content

Commit

Permalink
Update service.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Nov 19, 2024
1 parent 5b890ea commit 7ad134a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_dinkum_listener/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ def reload_configuration(self):
if self.stt:
LOG.debug(f"new={self.stt.__class__}: {self.stt.config}")

if not self.disable_reload and new_hash['fallback'] != self._applied_config_hash['fallback']:
if not self.disable_reload and not self.disable_fallback and new_hash['fallback'] != self._applied_config_hash['fallback']:
LOG.info("Reloading Fallback STT")
if self.fallback_stt:
LOG.debug(f"old={self.fallback_stt.__class__}: "
Expand Down

0 comments on commit 7ad134a

Please sign in to comment.