fixed error in logger causing rpi to think logging server is down
This commit is contained in:
parent
4d699181c3
commit
e02b42060b
3 changed files with 9 additions and 6 deletions
|
@ -67,7 +67,8 @@ class __Streaming:
|
|||
:return: None
|
||||
"""
|
||||
with self.__lock:
|
||||
self.__newest_frame = image.copy()
|
||||
if image is not None:
|
||||
self.__newest_frame = image.copy()
|
||||
|
||||
def _newest_frame_generator(self):
|
||||
"""
|
||||
|
|
Reference in a new issue