diff options
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/App.xaml.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs index 5ed253763..db923e5e2 100644 --- a/MediaBrowser.ServerApplication/App.xaml.cs +++ b/MediaBrowser.ServerApplication/App.xaml.cs @@ -255,7 +255,14 @@ namespace MediaBrowser.ServerApplication process.Exited += ProcessExited; - process.Start(); + try + { + process.Start(); + } + catch (Exception ex) + { + MessageBox.Show("There was an error launching your web browser. Please check your defualt browser settings."); + } } /// <summary> |
