We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ac03619 + 1d9b187 commit 7f21b6cCopy full SHA for 7f21b6c
package/src/components/ImageGallery/ImageGallery.tsx
@@ -312,7 +312,10 @@ export const ImageGallery = <
312
const attachmentImages =
313
cur.attachments?.filter(
314
(attachment) =>
315
- (attachment.type === 'giphy' && attachment.giphy?.[giphyVersion]?.url) ||
+ (attachment.type === 'giphy' &&
316
+ (attachment.giphy?.[giphyVersion]?.url ||
317
+ attachment.thumb_url ||
318
+ attachment.image_url)) ||
319
(attachment.type === 'image' &&
320
!attachment.title_link &&
321
!attachment.og_scrape_url &&
0 commit comments