Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeblackshear committed Jun 9, 2024
1 parent 550fce3 commit 48e167a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frigate/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def get_latest_segment_datetime(self, latest_segment: datetime.datetime) -> int:
for d in os.listdir(CACHE_DIR)
if os.path.isfile(os.path.join(CACHE_DIR, d))
and d.endswith(".mp4")
and not d.startswith("clip_")
and not d.startswith("preview_")
]
)
newest_segment_time = latest_segment
Expand Down

0 comments on commit 48e167a

Please sign in to comment.