Skip to content

Commit 5f77fe2

Browse files
committed
fix: Move startup checks after CI
1 parent 0f782f6 commit 5f77fe2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tagstudio/src/qt/ts_qt.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,12 +637,13 @@ def create_folders_tags_modal():
637637
)
638638
self.open_library(Path(lib))
639639

640-
self.check_ffmpeg()
641-
642640
if self.args.ci:
643641
# gracefully terminate the app in CI environment
644642
self.thumb_job_queue.put((self.SIGTERM.emit, []))
645643

644+
# Startup Checks
645+
self.check_ffmpeg()
646+
646647
app.exec()
647648

648649
self.shutdown()

0 commit comments

Comments
 (0)