mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
fixed some settings value convert issues. would cause crash on clean installs.
This commit is contained in:
parent
9caacc4809
commit
8c372e938c
5 changed files with 41 additions and 36 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue