mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Fix loopback address not working
This commit is contained in:
@@ -25,7 +25,7 @@ namespace Jackett.Models.Config
|
||||
{
|
||||
external = AllowExternal;
|
||||
}
|
||||
return "http://" + (external.Value ? "*" : "localhost") + ":" + Port + "/";
|
||||
return "http://" + (external.Value ? "*" : "127.0.0.1") + ":" + Port + "/";
|
||||
}
|
||||
|
||||
public string GenerateApi()
|
||||
|
Reference in New Issue
Block a user