1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00

Fixed bug with custom icons not working with apps

This commit is contained in:
Paweł Malak 2021-11-18 13:05:32 +01:00
parent 1220c56fc5
commit 426766225b
7 changed files with 31 additions and 39 deletions

View file

@ -7,20 +7,20 @@ const Bookmark = require('../../models/Bookmark');
const createBookmark = asyncWrapper(async (req, res, next) => {
let bookmark;
let _body = {
let body = {
...req.body,
categoryId: parseInt(req.body.categoryId),
};
if (_body.icon) {
_body.icon = _body.icon.trim();
if (body.icon) {
body.icon = body.icon.trim();
}
if (req.file) {
_body.icon = req.file.filename;
body.icon = req.file.filename;
}
bookmark = await Bookmark.create(_body);
bookmark = await Bookmark.create(body);
res.status(201).json({
success: true,