forked from shaba/openuds
fixed where to get fixed credentials
This commit is contained in:
parent
d5e71be73c
commit
3646c9dec9
@ -93,14 +93,15 @@ class HTML5RDPTransport(Transport):
|
||||
|
||||
username = user.getUsernameForAuth()
|
||||
|
||||
if self.fixedName.value is not '':
|
||||
username = self.fixedName.value
|
||||
|
||||
domain = ''
|
||||
if username.find('@') != -1:
|
||||
username, domain = username.split('@')
|
||||
elif username.find('\\') != -1:
|
||||
domain, username = username.split('\\')
|
||||
|
||||
if self.fixedName.value is not '':
|
||||
username = self.fixedName.value
|
||||
if self.fixedPassword.value is not '':
|
||||
password = self.fixedPassword.value
|
||||
if self.fixedDomain.value is not '':
|
||||
|
Loading…
Reference in New Issue
Block a user