From 7e709db0cc11eb9ba537ba6400f8c30aab1afc2b Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Fri, 29 Mar 2024 20:13:15 -0400 Subject: [PATCH] fix get_ip_addr --- core/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/utils.py b/core/utils.py index 469a03f..a9d1705 100644 --- a/core/utils.py +++ b/core/utils.py @@ -34,7 +34,8 @@ class Utils: @classmethod def get_ip_addr(cls, req: Request) -> str: - return req.headers.get("x-forwarded-for", req.client.host) + ip = req.headers.get("x-forwarded-for", req.client.host) + return ip.split(", ")[0] @classmethod def get_title_port(cls, cfg: CoreConfig):