浏览代码

ensure all events are cleaned up

Blake Blackshear 4 年之前
父节点
当前提交
34d9b2983e
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      frigate/events.py

+ 2 - 0
frigate/events.py

@@ -165,12 +165,14 @@ class EventProcessor(threading.Thread):
 
             # if save clips is not enabled for this camera, just continue
             if not save_clips_config.enabled:
+                self.event_processed_queue.put((event_data['id'], camera))
                 continue
 
             # if specific objects are listed for this camera, only save clips for them
             # TODO: default to all tracked objects rather than checking for None
             if save_clips_config.objects:
                 if not event_data['label'] in save_clips_config.objects:
+                    self.event_processed_queue.put((event_data['id'], camera))
                     continue
 
             if event_type == 'start':