From 5d89b8b3d051b3ff515a93d0e1877b1faa8e5afd Mon Sep 17 00:00:00 2001 From: Michael Lappas <251896846+michaellappas@users.noreply.github.com> Date: Sat, 3 Jan 2026 11:05:41 -0500 Subject: [PATCH] Fix media synchronization progress dialog not updating When an error occurred, the progress dialog incorrectly continued to display the last recorded progress. --- CONTRIBUTORS | 1 + qt/aqt/mediasync.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a874a313d..491524109 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -256,6 +256,7 @@ Eltaurus jariji Francisco Esteva SelfishPig +Michael Lappas ******************** diff --git a/qt/aqt/mediasync.py b/qt/aqt/mediasync.py index 7cfb6d4a7..92ecbb0c9 100644 --- a/qt/aqt/mediasync.py +++ b/qt/aqt/mediasync.py @@ -93,6 +93,7 @@ class MediaSyncer: elif is_periodic_sync: print(str(exc)) else: + self._update_progress(tr.sync_media_failed()) show_info(str(exc), modality=Qt.WindowModality.NonModal) def abort(self) -> None: