Merge remote-tracking branch 'return42/fix-preference-save'

This commit is contained in:
Alexandre Flament 2021-04-21 16:24:22 +02:00
commit ae5954f2da
2 changed files with 2 additions and 2 deletions

View file

@ -836,7 +836,7 @@ def preferences():
# save preferences
if request.method == 'POST':
resp = make_response(url_for('index', _external=True))
resp = make_response(redirect(url_for('index', _external=True)))
try:
request.preferences.parse_form(request.form)
except ValidationException: