Skip to content

Commit

Permalink
Fixed exception being raised when setting all numeric password to acc…
Browse files Browse the repository at this point in the history
…ess the web UI
  • Loading branch information
sdellysse committed Dec 8, 2023
1 parent 058a005 commit 256ceeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bazarr/app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ def save_settings(settings_items):

if key == 'settings-auth-password':
if value != settings.auth.password and value is not None:
value = hashlib.md5(value.encode('utf-8')).hexdigest()
value = hashlib.md5(f"{value}".encode('utf-8')).hexdigest()

if key == 'settings-general-debug':
configure_debug = True
Expand Down
2 changes: 1 addition & 1 deletion bazarr/utilities/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def check_credentials(user, pw, request, log_success=True):
ip_addr = request.environ.get('HTTP_X_FORWARDED_FOR', request.remote_addr)
username = settings.auth.username
password = settings.auth.password
if hashlib.md5(pw.encode('utf-8')).hexdigest() == password and user == username:
if hashlib.md5(f"{pw}".encode('utf-8')).hexdigest() == password and user == username:
if log_success:
logging.info(f'Successful authentication from {ip_addr} for user {user}')
return True
Expand Down

0 comments on commit 256ceeb

Please sign in to comment.