diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-17 09:16:50 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-17 09:16:50 -0400 |
| commit | 5c094afd7e79934cb02f29a9a0080ed12c7e1098 (patch) | |
| tree | 4ea0724f3fae7b65459a36ae56ff164fc67da8f0 /MediaBrowser.ServerApplication/MainWindow.xaml.cs | |
| parent | 8a2e0badaeed08e747f5607ce6ecf46225873839 (diff) | |
Made BaseJsonHandler strongly typed. Moved DTO entities to their own DTO namespace in Model.
Diffstat (limited to 'MediaBrowser.ServerApplication/MainWindow.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/MainWindow.xaml.cs | 6 |
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
{
|
