aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/MainWindow.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.ServerApplication/MainWindow.xaml.cs')
-rw-r--r--MediaBrowser.ServerApplication/MainWindow.xaml.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.ServerApplication/MainWindow.xaml.cs b/MediaBrowser.ServerApplication/MainWindow.xaml.cs
index b0b942025..cbcf5186e 100644
--- a/MediaBrowser.ServerApplication/MainWindow.xaml.cs
+++ b/MediaBrowser.ServerApplication/MainWindow.xaml.cs
@@ -22,15 +22,15 @@ namespace MediaBrowser.ServerApplication
Progress<TaskProgress> progress = new Progress<TaskProgress>();
Common.UI.Splash splash = new Common.UI.Splash(progress);
+ splash.Show();
+
try
{
- splash.Show();
-
new Kernel().Init(progress);
}
catch (Exception ex)
{
- MessageBox.Show("There was an error launching Media Browser: " + ex.Message);
+ MessageBox.Show("There was an error launching Media Browser Server: " + ex.Message);
}
finally
{