Cleanup timeline entries (#8489)

This commit is contained in:
Nicolas Mowen
2023-11-06 05:42:10 -07:00
committed by GitHub
parent 89dd114da1
commit a482160691

View File

@@ -102,5 +102,11 @@ class TimelineProcessor(threading.Thread):
)[0]
Timeline.insert(timeline_entry).execute()
elif event_type == "end":
timeline_entry[Timeline.class_type] = "gone"
Timeline.insert(timeline_entry).execute()
if event_data["has_clip"] or event_data["has_snapshot"]:
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()