1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-03-20 06:50:23 +03:00

Merge remote-tracking branch 'origin/v4.0'

This commit is contained in:
Adolfo Gómez García 2025-01-20 18:11:05 +01:00
commit 6239d499af
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23
2 changed files with 4 additions and 1 deletions

2
client

@ -1 +1 @@
Subproject commit bf97a4ad29d0223226bd40c3b58d9fb6e4118b4c
Subproject commit 7c14b4068733aed3c040010e85ab52a975854498

View File

@ -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)