File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 5656from thirdparty .odict .odict import OrderedDict
5757
5858def _oneShotUnionUse (expression , unpack = True , limited = False ):
59- retVal = hashDBRetrieve ("%s%s" % (conf .hexConvert , expression ), checkConf = True ) # as union data is stored raw unconverted
59+ retVal = hashDBRetrieve ("%s%s" % (conf .hexConvert or False , expression ), checkConf = True ) # as union data is stored raw unconverted
6060
6161 threadData = getCurrentThreadData ()
6262 threadData .resumed = retVal is not None
@@ -102,7 +102,7 @@ def _(regex):
102102 if Backend .isDbms (DBMS .MSSQL ) and wasLastResponseDBMSError ():
103103 retVal = htmlunescape (retVal ).replace ("<br>" , "\n " )
104104
105- hashDBWrite ("%s%s" % (conf .hexConvert , expression ), retVal )
105+ hashDBWrite ("%s%s" % (conf .hexConvert or False , expression ), retVal )
106106 else :
107107 trimmed = _ ("%s(?P<result>.*?)<" % (kb .chars .start ))
108108
You can’t perform that action at this time.
0 commit comments