mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Fix for an Issue #900
This commit is contained in:
parent
4d5b48b2ae
commit
97cc679f9c
|
@ -2025,7 +2025,7 @@ def getUnicode(value, encoding=None, noneToNull=False):
|
||||||
return NULL
|
return NULL
|
||||||
|
|
||||||
if isListLike(value):
|
if isListLike(value):
|
||||||
value = list(getUnicode(_, encoding, system, noneToNull) for _ in value)
|
value = list(getUnicode(_, encoding, noneToNull) for _ in value)
|
||||||
return value
|
return value
|
||||||
|
|
||||||
if isinstance(value, unicode):
|
if isinstance(value, unicode):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user