getQuoteAttachment: Handle attachments with no path

This commit is contained in:
Scott Nonnenberg 2024-09-07 02:21:31 +10:00 committed by GitHub
parent ec0c4861a7
commit 5f82c82803
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,12 +80,11 @@ export async function getQuoteAttachment(
return { return {
contentType: isGIFQuote ? IMAGE_GIF : contentType, contentType: isGIFQuote ? IMAGE_GIF : contentType,
fileName, fileName,
thumbnail: thumbnail thumbnail:
thumbnail && thumbnail.path
? { ? {
...(await loadAttachmentData(thumbnail)), ...(await loadAttachmentData(thumbnail)),
objectUrl: thumbnail.path objectUrl: getLocalAttachmentUrl(thumbnail),
? getLocalAttachmentUrl(thumbnail)
: undefined,
} }
: undefined, : undefined,
}; };
@ -103,12 +102,11 @@ export async function getQuoteAttachment(
return { return {
contentType, contentType,
thumbnail: image thumbnail:
image && image.path
? { ? {
...(await loadAttachmentData(image)), ...(await loadAttachmentData(image)),
objectUrl: image.path objectUrl: getLocalAttachmentUrl(image),
? getLocalAttachmentUrl(image)
: undefined,
} }
: undefined, : undefined,
}; };
@ -122,10 +120,12 @@ export async function getQuoteAttachment(
return [ return [
{ {
contentType, contentType,
thumbnail: { thumbnail: path
? {
...(await loadAttachmentData(sticker.data)), ...(await loadAttachmentData(sticker.data)),
objectUrl: path ? getLocalAttachmentUrl(sticker.data) : undefined, objectUrl: getLocalAttachmentUrl(sticker.data),
}, }
: undefined,
}, },
]; ];
} }