* fix timeline delete

* fix labelmap in config response

* create cache dirs if needed
This commit is contained in:
Blake Blackshear
2023-04-30 14:58:39 -05:00
committed by GitHub
parent 9bf98f908d
commit 19890310fe
3 changed files with 71 additions and 4 deletions

View File

@@ -141,7 +141,7 @@ class RecordingCleanup(threading.Thread):
deleted_recordings.add(recording.id)
# delete timeline entries relevant to this recording segment
Timeline.delete(
Timeline.delete().where(
Timeline.timestamp.between(
recording.start_time, recording.end_time
),