forked from shaba/openuds
Fixed a bug not allowing linux machines to register when using an case sensitive database0
This commit is contained in:
parent
2fdcdb014f
commit
c08a0cb0ed
@ -111,7 +111,7 @@ class Actor(Handler):
|
||||
logger.debug('Getting User services from ids: {}'.format(self._params.get('id')))
|
||||
|
||||
try:
|
||||
clientIds = self._params.get('id').split(',')[:5]
|
||||
clientIds = [i.upper() for i in self._params.get('id').split(',')[:5]]
|
||||
except Exception:
|
||||
raise RequestError('Invalid request: (no id found)')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user