1
0
mirror of synced 2025-02-20 20:11:33 +01:00

fix get_ip_addr

This commit is contained in:
Kevin Trocolli 2024-03-29 20:13:15 -04:00
parent 10582cc1fc
commit 7e709db0cc

View File

@ -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):