Skip to content

Commit

Permalink
Moved uninstall to separate thread.
Browse files Browse the repository at this point in the history
  • Loading branch information
RickDB authored and RickDB committed Dec 29, 2016
1 parent a5a3445 commit 5216b8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion JMMServer/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 5216b8f

Please sign in to comment.