diff --git a/PamhagenSysCtrl/App.xaml.cs b/PamhagenSysCtrl/App.xaml.cs index e0bda00..d5d1b79 100644 --- a/PamhagenSysCtrl/App.xaml.cs +++ b/PamhagenSysCtrl/App.xaml.cs @@ -67,6 +67,9 @@ namespace PamhagenSysCtrl { public static async Task CheckForUpdates(bool showResult = false) { if (Config.UpdateUrl == null) return; + foreach (Window w in Current.Windows) { + if (w is UpdateDialog) return; + } try { var latest = await UpdateService.GetLatestInstallerUrl(Config.UpdateUrl);