We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f8d6e commit d087565Copy full SHA for d087565
plugins/generic/users.py
@@ -101,7 +101,9 @@ def getUsers(self):
101
values = inject.getValue(query, blind=False, time=False)
102
103
if not isNoneValue(values):
104
- kb.data.cachedUsers = arrayizeValue(values)
+ kb.data.cachedUsers = []
105
+ for value in arrayizeValue(values):
106
+ kb.data.cachedUsers.append(unArrayizeValue(value))
107
108
if not kb.data.cachedUsers and isInferenceAvailable() and not conf.direct:
109
infoMsg = "fetching number of database users"
0 commit comments