From 98232af0fc63e91da69fc063cd40ebaaa3412099 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 17 Jun 2025 12:11:11 -0600 Subject: [PATCH] Don't fail on unicode debug for config updates --- frigate/comms/config_updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/comms/config_updater.py b/frigate/comms/config_updater.py index 06b870c62..0486cbdd1 100644 --- a/frigate/comms/config_updater.py +++ b/frigate/comms/config_updater.py @@ -50,7 +50,7 @@ class ConfigSubscriber: return (topic, obj) else: return (None, None) - except zmq.ZMQError: + except (zmq.ZMQError, UnicodeDecodeError): return (None, None) def stop(self) -> None: