Add missing await for thumbnail creation in makeQuote()

This commit is contained in:
Scott Nonnenberg 2018-06-21 15:19:55 -07:00
parent d29f50c396
commit 0abdd5ead1

View file

@ -753,7 +753,7 @@
return { return {
contentType, contentType,
fileName: attachment.fileName, fileName: attachment.fileName,
thumbnail: makeThumbnail(), thumbnail: await makeThumbnail(),
}; };
}) })
), ),