소스 검색

Removed static and added an error message

LukePulverenti Luke Pulverenti luke pulverenti 13 년 전
부모
커밋
10551b6804
1개의 변경된 파일4개의 추가작업 그리고 7개의 파일을 삭제
  1. 4 7
      MediaBrowser.ServerApplication/MainWindow.xaml.cs

+ 4 - 7
MediaBrowser.ServerApplication/MainWindow.xaml.cs

@@ -23,15 +23,13 @@ namespace MediaBrowser.ServerApplication
     /// </summary>
     public partial class MainWindow : Window
     {
-        protected static Kernel kernel;
-
         public MainWindow()
         {
             InitializeComponent();
             LoadKernel();
         }
 
-        private static void LoadKernel()
+        private void LoadKernel()
         {
             Progress<TaskProgress> progress = new Progress<TaskProgress>();
             SplashScreen splash = new SplashScreen(progress);
@@ -40,12 +38,11 @@ namespace MediaBrowser.ServerApplication
             {
                 splash.Show();
 
-                kernel = new Kernel();
-
-                kernel.Init(progress);
+                new Kernel().Init(progress);
             }
-            catch
+            catch (Exception ex)
             {
+                MessageBox.Show("There was an error launching Media Browser: " + ex.Message);
             }
             finally
             {