Skip to content

Commit

Permalink
alors ?
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTheGeek committed Jan 30, 2024
1 parent df28f88 commit c2e85f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ def check_auth():
@login_required
def check_auth_vnc():
headers = dict(request.headers)
print(headers)
logger.critical(headers)
uri = str(request.headers.get("uri"))
print(uri)
logger.critical(uri)
uri = "/test?=token"
part_after_equal = uri.split('=', 1)[1]
token_url = part_after_equal.split('&', 1)[0]
Expand Down

0 comments on commit c2e85f9

Please sign in to comment.