mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
[fix] Damn array args bug
This commit is contained in:
parent
fcc9bfd4d1
commit
2c9ec9f638
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ class _ActionsMapPlugin(object):
|
|||
for a in args:
|
||||
params[a] = True
|
||||
# Append other request params
|
||||
for k, v in dict(request.params.decode()).items():
|
||||
for k, v in request.params.decode().dict.items():
|
||||
v = _format(v)
|
||||
if k not in params.keys():
|
||||
params[k] = v
|
||||
|
|
Loading…
Add table
Reference in a new issue