MediaGallery: fall back on url when preview_url isn't provided

This commit is contained in:
Alex Gleason
2022-02-07 12:26:11 -06:00
parent 2c51054ae4
commit c4bf347dae
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ class MediaItem extends ImmutablePureComponent {
thumbnail = (
<StillImage
src={attachment.get('preview_url')}
src={attachment.get('preview_url') || attachment.get('url')}
alt={attachment.get('description')}
style={{ objectPosition: `${x}% ${y}%` }}
/>