mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-08-27 13:47:50 +02:00
Don't fail on unicode debug for config updates
This commit is contained in:
parent
e7682e83e8
commit
cb464162ca
@ -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