remove preview

This commit is contained in:
lesion
2022-05-09 17:16:09 +02:00
parent fd0676e283
commit be9c75c088
2 changed files with 2 additions and 11 deletions

View File

@@ -352,7 +352,6 @@ const eventController = {
focalpoint = [parseFloat(focalpoint[0]).toFixed(2), parseFloat(focalpoint[1]).toFixed(2)]
eventDetails.media = [{
url: req.file.filename,
preview: req.file.preview,
height: req.file.height,
width: req.file.width,
name: body.image_name || body.title || '',
@@ -446,9 +445,8 @@ const eventController = {
const focalpoint = body.image_focalpoint ? body.image_focalpoint.split(',') : ['0', '0']
eventDetails.media = [{
url: req.file.filename,
preview: req.file?.preview,
height: req.file?.height,
width: req.file?.width,
height: req.file.height,
width: req.file.width,
name: body.image_name || body.title || '',
focalpoint: [parseFloat(focalpoint[0].slice(0, 6)), parseFloat(focalpoint[1].slice(0, 6))]
}]