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

improve-ci
Alex Gleason 2022-02-07 12:26:11 -06:00
rodzic 2c51054ae4
commit c4bf347dae
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -168,7 +168,7 @@ class Item extends React.PureComponent {
onClick={this.handleClick} onClick={this.handleClick}
target='_blank' target='_blank'
> >
<StillImage src={previewUrl} alt={attachment.get('description')} /> <StillImage src={previewUrl || originalUrl} alt={attachment.get('description')} />
</a> </a>
); );
} else if (attachment.get('type') === 'gifv') { } else if (attachment.get('type') === 'gifv') {

Wyświetl plik

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