mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #3740
This commit is contained in:
parent
ceb718107f
commit
0e409d4479
3 changed files with 7 additions and 7 deletions
|
|
@ -452,7 +452,7 @@ def errorUse(expression, dump=False):
|
|||
value = _errorFields(expression, expressionFields, expressionFieldsList)
|
||||
|
||||
if value and isListLike(value):
|
||||
if len(value) == 1 and isinstance(value[0], six.string_types):
|
||||
if len(value) == 1 and isinstance(value[0], (six.string_types, type(None))):
|
||||
value = unArrayizeValue(value)
|
||||
elif len(value) > 1 and stopLimit == 1:
|
||||
value = [value]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue