forked from Github/frigate
Cleanup timeline entries (#8489)
This commit is contained in:
@@ -102,5 +102,11 @@ class TimelineProcessor(threading.Thread):
|
|||||||
)[0]
|
)[0]
|
||||||
Timeline.insert(timeline_entry).execute()
|
Timeline.insert(timeline_entry).execute()
|
||||||
elif event_type == "end":
|
elif event_type == "end":
|
||||||
timeline_entry[Timeline.class_type] = "gone"
|
if event_data["has_clip"] or event_data["has_snapshot"]:
|
||||||
Timeline.insert(timeline_entry).execute()
|
timeline_entry[Timeline.class_type] = "gone"
|
||||||
|
Timeline.insert(timeline_entry).execute()
|
||||||
|
else:
|
||||||
|
# if event was not saved then the timeline entries should be deleted
|
||||||
|
Timeline.delete().where(
|
||||||
|
Timeline.source_id == event_data["id"]
|
||||||
|
).execute()
|
||||||
|
|||||||
Reference in New Issue
Block a user