From 10eed9efcde30d2fc8ca082b87a5b9cf0cb5cd7d Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Thu, 4 Sep 2025 16:08:28 +0200 Subject: [PATCH] Don't load edited videos to edit --- croppa/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/croppa/main.py b/croppa/main.py index 2acc5ae..105245a 100644 --- a/croppa/main.py +++ b/croppa/main.py @@ -119,6 +119,7 @@ class VideoEditor: if ( file_path.is_file() and file_path.suffix.lower() in self.VIDEO_EXTENSIONS + and not "_edited" in file_path.name ): video_files.append(file_path) return sorted(video_files)