Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dkmstr committed Jan 20, 2025
2 parents e37a65b + defd2dd commit 6239d49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client
3 changes: 3 additions & 0 deletions server/src/uds/web/views/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,9 @@ def update_transport_ticket(
data.get('password', None) or None
) # If password is empty, set it to None
domain = data.get('domain', None) or None # If empty string, set to None
if domain and '.' in domain:
username = f'{username}@{domain}'
domain = None

if password:
password = CryptoManager().symmetric_encrypt(password, scrambler)
Expand Down

0 comments on commit 6239d49

Please sign in to comment.