mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-07-26 13:47:03 +02:00
Don't fail on unicode debug for config updates
This commit is contained in:
parent
907e351dff
commit
98232af0fc
@ -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