Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b250b68

Browse files
committed
Bug fix (--users was returning only 1 value because of this bug; probably introduced by mistake months ago)
1 parent 7304971 commit b250b68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/generic/users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def getUsers(self):
9797
query = rootQuery.inband.query2
9898
else:
9999
query = rootQuery.inband.query
100-
value = unArrayizeValue(inject.getValue(query, blind=False, time=False))
100+
value = inject.getValue(query, blind=False, time=False)
101101

102102
if not isNoneValue(value):
103103
kb.data.cachedUsers = arrayizeValue(value)

0 commit comments

Comments
 (0)