mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-01-02 00:07:11 +01:00
fix auth remote addr access (#15378)
This commit is contained in:
parent
8aa6297308
commit
bb86e71e65
@ -85,7 +85,12 @@ def get_remote_addr(request: Request):
|
|||||||
return str(ip)
|
return str(ip)
|
||||||
|
|
||||||
# if there wasn't anything in the route, just return the default
|
# if there wasn't anything in the route, just return the default
|
||||||
return request.remote_addr or "127.0.0.1"
|
remote_addr = None
|
||||||
|
|
||||||
|
if hasattr(request, "remote_addr"):
|
||||||
|
remote_addr = request.remote_addr
|
||||||
|
|
||||||
|
return remote_addr or "127.0.0.1"
|
||||||
|
|
||||||
|
|
||||||
def get_jwt_secret() -> str:
|
def get_jwt_secret() -> str:
|
||||||
|
Loading…
Reference in New Issue
Block a user