From a19bfc8f07790c9108e09606b590b78fbcb512e6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 5 Jul 2013 09:47:10 -0400 Subject: Added support for linked children --- MediaBrowser.ServerApplication/App.xaml.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.ServerApplication/App.xaml.cs') 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."); + } } /// -- cgit v1.2.3