1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-10 01:17:59 +03:00

merged from 3.6

This commit is contained in:
Adolfo Gómez García 2023-04-25 13:10:56 +02:00
parent ac4177f22b
commit 646ec42dd6
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -378,8 +378,12 @@ class HTML5RDPTransport(transports.Transport):
domain = ''
username = proc[0]
azureAd = False
if self.fixedDomain.value != '':
domain = self.fixedDomain.value
if self.fixedDomain.value.lower() == 'azuread':
azureAd = True
else:
domain = self.fixedDomain.value
if self.useEmptyCreds.isTrue():
username, password, domain = '', '', ''