fixed some settings value convert issues. would cause crash on clean installs.

This commit is contained in:
unknown 2011-05-16 00:32:01 -07:00
commit 8c372e938c
5 changed files with 41 additions and 36 deletions

View file

@ -37,8 +37,15 @@ namespace NzbDrone
Attach();
#endif
Process.Start(IISController.AppUrl);
try
{
Logger.Info("Starting default browser. {0}",IISController.AppUrl);
Process.Start(IISController.AppUrl);
}
catch(Exception e)
{
Logger.ErrorException("Failed to open URL in default browser.", e);
}
while (true)
{
Console.ReadLine();