Skip to content

Commit d087565

Browse files
committed
1 parent 31f8d6e commit d087565

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugins/generic/users.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ def getUsers(self):
101101
values = inject.getValue(query, blind=False, time=False)
102102

103103
if not isNoneValue(values):
104-
kb.data.cachedUsers = arrayizeValue(values)
104+
kb.data.cachedUsers = []
105+
for value in arrayizeValue(values):
106+
kb.data.cachedUsers.append(unArrayizeValue(value))
105107

106108
if not kb.data.cachedUsers and isInferenceAvailable() and not conf.direct:
107109
infoMsg = "fetching number of database users"

0 commit comments

Comments
 (0)