mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-07-30 13:48:07 +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)
|
return (topic, obj)
|
||||||
else:
|
else:
|
||||||
return (None, None)
|
return (None, None)
|
||||||
except zmq.ZMQError:
|
except (zmq.ZMQError, UnicodeDecodeError):
|
||||||
return (None, None)
|
return (None, None)
|
||||||
|
|
||||||
def stop(self) -> None:
|
def stop(self) -> None:
|
||||||
|
Loading…
Reference in New Issue
Block a user