mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
ensure all events are cleaned up
This commit is contained in:
parent
eef70e434b
commit
d06b587d33
@ -165,12 +165,14 @@ class EventProcessor(threading.Thread):
|
|||||||
|
|
||||||
# if save clips is not enabled for this camera, just continue
|
# if save clips is not enabled for this camera, just continue
|
||||||
if not save_clips_config.enabled:
|
if not save_clips_config.enabled:
|
||||||
|
self.event_processed_queue.put((event_data['id'], camera))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# if specific objects are listed for this camera, only save clips for them
|
# if specific objects are listed for this camera, only save clips for them
|
||||||
# TODO: default to all tracked objects rather than checking for None
|
# TODO: default to all tracked objects rather than checking for None
|
||||||
if save_clips_config.objects:
|
if save_clips_config.objects:
|
||||||
if not event_data['label'] in save_clips_config.objects:
|
if not event_data['label'] in save_clips_config.objects:
|
||||||
|
self.event_processed_queue.put((event_data['id'], camera))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if event_type == 'start':
|
if event_type == 'start':
|
||||||
|
Loading…
Reference in New Issue
Block a user