Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4b00bd commit 821e4bfCopy full SHA for 821e4bf
1 file changed
plugins/generic/users.py
@@ -103,7 +103,9 @@ def getUsers(self):
103
if not isNoneValue(values):
104
kb.data.cachedUsers = []
105
for value in arrayizeValue(values):
106
- kb.data.cachedUsers.append(unArrayizeValue(value))
+ value = unArrayizeValue(value)
107
+ if not isNoneValue(value):
108
+ kb.data.cachedUsers.append(value)
109
110
if not kb.data.cachedUsers and isInferenceAvailable() and not conf.direct:
111
infoMsg = "fetching number of database users"
0 commit comments