aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/App.xaml.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-05 09:47:10 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-05 09:47:10 -0400
commita19bfc8f07790c9108e09606b590b78fbcb512e6 (patch)
tree2545c89e7f9ec59fc854097cea543678c664f20d /MediaBrowser.ServerApplication/App.xaml.cs
parentf98b611debd757dcf2b2862fa04f28d514a7fa3d (diff)
Added support for linked children
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
-rw-r--r--MediaBrowser.ServerApplication/App.xaml.cs9
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>