mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-08-08 13:51:01 +02:00
Don't fail on unicode debug for config updates
This commit is contained in:
parent
f6db714016
commit
b142a69c89
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user