mirror of
https://github.com/kemko/PowerDNS-Admin.git
synced 2026-01-01 15:45:45 +03:00
Fix #238
This commit is contained in:
@@ -118,7 +118,7 @@ def login_via_authorization_header(request):
|
||||
if auth_header:
|
||||
auth_header = auth_header.replace('Basic ', '', 1)
|
||||
try:
|
||||
auth_header = base64.b64decode(auth_header)
|
||||
auth_header = str(base64.b64decode(auth_header), 'utf-8')
|
||||
username,password = auth_header.split(":")
|
||||
except TypeError as e:
|
||||
return None
|
||||
|
||||
Reference in New Issue
Block a user