forked from shaba/openuds
small fix for base rdp to backwards compatibility
This commit is contained in:
parent
a499f13e56
commit
c80535fabb
@ -40,7 +40,7 @@ from uds.core.transports import protocols
|
||||
import logging
|
||||
import os
|
||||
|
||||
__updated__ = '2017-02-13'
|
||||
__updated__ = '2017-02-14'
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
@ -137,7 +137,11 @@ class BaseRDPTransport(Transport):
|
||||
|
||||
def getConnectionInfo(self, service, user, password):
|
||||
dct = self.processUserPassword(service, user, password)
|
||||
dct['sso'] = service.getProperty('sso_available') == '1'
|
||||
# We can use getConectionInfo with a Service Pool
|
||||
try:
|
||||
dct['sso'] = service.getProperty('sso_available') == '1'
|
||||
except: # If Service Pool
|
||||
pass
|
||||
return dct
|
||||
|
||||
def getScript(self, script):
|
||||
|
@ -58,7 +58,7 @@ import logging
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
__updated__ = '2016-11-22'
|
||||
__updated__ = '2017-02-14'
|
||||
|
||||
|
||||
@csrf_exempt
|
||||
@ -226,7 +226,7 @@ def ticketAuth(request, ticketId):
|
||||
)
|
||||
|
||||
except TicketStore.InvalidTicket:
|
||||
return render(
|
||||
return render(request,
|
||||
theme.template('simpleLauncherAlreadyLaunched.html')
|
||||
)
|
||||
except Authenticator.DoesNotExist:
|
||||
|
Loading…
Reference in New Issue
Block a user