mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 16:28:08 +01:00
Fix 'unknown' media attachment rendering in detailed view (#32713)
This commit is contained in:
parent
e1b7382ea6
commit
01e25af2e3
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ export const DetailedStatus: React.FC<{
|
||||||
media = <PictureInPicturePlaceholder aspectRatio={attachmentAspectRatio} />;
|
media = <PictureInPicturePlaceholder aspectRatio={attachmentAspectRatio} />;
|
||||||
} else if (status.get('media_attachments').size > 0) {
|
} else if (status.get('media_attachments').size > 0) {
|
||||||
if (
|
if (
|
||||||
['image', 'gifv'].includes(
|
['image', 'gifv', 'unknown'].includes(
|
||||||
status.getIn(['media_attachments', 0, 'type']) as string,
|
status.getIn(['media_attachments', 0, 'type']) as string,
|
||||||
) ||
|
) ||
|
||||||
status.get('media_attachments').size > 1
|
status.get('media_attachments').size > 1
|
||||||
|
|
Loading…
Reference in a new issue