diff --git a/JMMServer/MainWindow.xaml.cs b/JMMServer/MainWindow.xaml.cs index 03169c74a..24bd31a0c 100644 --- a/JMMServer/MainWindow.xaml.cs +++ b/JMMServer/MainWindow.xaml.cs @@ -167,7 +167,9 @@ public MainWindow() string path = Path.Combine(ServerSettings.ApplicationPath, "settings.json"); if (File.Exists(path)) { - UninstallJMMServer(); + Thread t = new Thread(UninstallJMMServer); + t.IsBackground = true; + t.Start(); } //HibernatingRhinos.Profiler.Appender.NHibernate.NHibernateProfiler.Initialize();