mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Fix issue with accented chars in form .. decode() is not needed anymore?
This commit is contained in:
parent
c5f577c04f
commit
c5700f1ba3
1 changed files with 1 additions and 1 deletions
|
@ -358,7 +358,7 @@ class _ActionsMapPlugin(object):
|
|||
params[a] = True
|
||||
|
||||
# Append other request params
|
||||
req_params = list(request.params.decode().dict.items())
|
||||
req_params = list(request.params.dict.items())
|
||||
# TODO test special chars in filename
|
||||
req_params += list(request.files.dict.items())
|
||||
for k, v in req_params:
|
||||
|
|
Loading…
Reference in a new issue