From 0ce6c608ed250e39b0c85909a2e4dd97378f2a13 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 20 May 2021 10:41:36 +0100 Subject: [PATCH] Don't remove + from fields --- content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.py b/content.py index baabd8c9e..f73198d1e 100644 --- a/content.py +++ b/content.py @@ -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