From 6592310f2bf453b79eba2b5348f4d35e54dc5ba2 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 28 Apr 2015 07:31:22 -0700 Subject: [PATCH] Permissions can cause OWIN port registration to fail --- src/NzbDrone.Console/ConsoleApp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Console/ConsoleApp.cs b/src/NzbDrone.Console/ConsoleApp.cs index 87b90165a..6c8bfd636 100644 --- a/src/NzbDrone.Console/ConsoleApp.cs +++ b/src/NzbDrone.Console/ConsoleApp.cs @@ -23,7 +23,7 @@ namespace NzbDrone.Console { System.Console.WriteLine(""); System.Console.WriteLine(""); - Logger.Fatal(exception.Message + ". This can happen if another instance of Sonarr is already running or another application is using the port assinged to NzbDrone (default: 8989)"); + Logger.Fatal(exception.Message + ". This can happen if another instance of Sonarr is already running another application is using the same port (default: 8989) or the user has insufficient permissions"); System.Console.WriteLine("Press any key to exit..."); System.Console.ReadLine(); Environment.Exit(1);