fix: ensure progress dialog updates on the UI thread

This commit is contained in:
HueByte
2026-04-20 17:41:22 +02:00
parent 6758aceb5d
commit 6aef6890cf
+1 -1
View File
@@ -118,7 +118,7 @@ public sealed class UpdateChecker : IDisposable
statusText = $"{step}...";
}
_progressDialog?.UpdateProgress(fraction, statusText);
_app.Invoke(() => _progressDialog?.UpdateProgress(fraction, statusText));
}
private void OnUpdateStarted(string version)