switchable image shrinking

This commit is contained in:
zadam
2019-02-24 12:25:34 +01:00
parent 51bbc10744
commit b7bd94b6b0
3 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ async function uploadImage(req) {
return [400, "Unknown image type: " + file.mimetype];
}
const {url} = await imageService.saveImage(file.buffer, file.originalname, noteId);
const {url} = await imageService.saveImage(file.buffer, file.originalname, noteId, true);
return {
uploaded: true,