set note type/mime in PUT body to avoid http proxy slash reencoding, fixes #2419

This commit is contained in:
zadam
2021-12-08 22:36:09 +01:00
parent ab550a1e8d
commit 97f7fe7b18
3 changed files with 4 additions and 7 deletions

View File

@@ -120,9 +120,8 @@ function protectNote(req) {
function setNoteTypeMime(req) {
// can't use [] destructuring because req.params is not iterable
const noteId = req.params[0];
const type = req.params[1];
const mime = req.params[2];
const {noteId} = req.params;
const {type, mime} = req.body;
const note = becca.getNote(noteId);
note.type = type;