fix: revert update check order

This commit is contained in:
Travis Abendshien
2026-08-15 13:24:24 -07:00
parent fcd4d67711
commit 30c81257fa
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -25,6 +25,8 @@ class TagStudioCore:
@lru_cache(maxsize=1)
def get_most_recent_release_version() -> str | None:
"""Get the version of the most recent GitHub release."""
logger.info("[Core] Checking for updates...")
try:
resp = requests.get(
"https://api.github.com/repos/TagStudioDev/TagStudio/releases/latest"
+1 -1
View File
@@ -639,8 +639,8 @@ class QtDriver(DriverMixin, QObject):
self.main_window.search_field.setFocus()
self.app.exec()
self.check_for_update()
self.app.exec()
self.shutdown()
def show_error_message(self, error_name: str, error_desc: str | None = None):