From 5ea58dbbab6fb21b59e388056c0b739ccebba9ee Mon Sep 17 00:00:00 2001 From: Kayomani Date: Tue, 28 Jul 2015 20:29:05 +0100 Subject: [PATCH] #120 Linux defaults to allowing external access. --- src/Jackett/Models/Config/ServerConfig.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Jackett/Models/Config/ServerConfig.cs b/src/Jackett/Models/Config/ServerConfig.cs index 58a221a5f..36f8e1d39 100644 --- a/src/Jackett/Models/Config/ServerConfig.cs +++ b/src/Jackett/Models/Config/ServerConfig.cs @@ -12,6 +12,7 @@ namespace Jackett.Models.Config public ServerConfig() { Port = 9117; + AllowExternal = System.Environment.OSVersion.Platform == PlatformID.Unix; } public int Port { get; set; }