#120 Linux defaults to allowing external access.

This commit is contained in:
Kayomani
2015-07-28 20:29:05 +01:00
parent 0184dbd560
commit 5ea58dbbab

View File

@@ -12,6 +12,7 @@ namespace Jackett.Models.Config
public ServerConfig() public ServerConfig()
{ {
Port = 9117; Port = 9117;
AllowExternal = System.Environment.OSVersion.Platform == PlatformID.Unix;
} }
public int Port { get; set; } public int Port { get; set; }