Don't remove + from fields

main
Bob Mottram 2021-05-20 10:41:36 +01:00
parent 3b2237dc44
commit 0ce6c608ed
1 changed files with 1 additions and 1 deletions

View File

@ -1049,5 +1049,5 @@ def extractTextFieldsInPOST(postBytes, boundary, debug: bool,
if line > 2:
postValue += '\n'
postValue += postLines[line]
fields[postKey] = urllib.parse.unquote_plus(postValue)
fields[postKey] = urllib.parse.unquote(postValue)
return fields