diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-05 09:47:10 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-05 09:47:10 -0400 |
| commit | a19bfc8f07790c9108e09606b590b78fbcb512e6 (patch) | |
| tree | 2545c89e7f9ec59fc854097cea543678c664f20d /MediaBrowser.ServerApplication/App.xaml.cs | |
| parent | f98b611debd757dcf2b2862fa04f28d514a7fa3d (diff) | |
Added support for linked children
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> |
