mirror of https://github.com/lidarr/Lidarr
Fixed: Don't run netsh unless on Windows
This commit is contained in:
parent
9e11745cb2
commit
c9d7e54417
|
@ -127,6 +127,11 @@ namespace NzbDrone.Host.AccessControl
|
||||||
|
|
||||||
private List<UrlAcl> GetRegisteredUrls()
|
private List<UrlAcl> GetRegisteredUrls()
|
||||||
{
|
{
|
||||||
|
if (OsInfo.IsNotWindows)
|
||||||
|
{
|
||||||
|
return new List<UrlAcl>();
|
||||||
|
}
|
||||||
|
|
||||||
var arguments = String.Format("http show urlacl");
|
var arguments = String.Format("http show urlacl");
|
||||||
var output = _netshProvider.Run(arguments);
|
var output = _netshProvider.Run(arguments);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue