Skip to content

Commit cdfd608

Browse files
Fix sticker rendering with bad content-type
1 parent e982cd8 commit cdfd608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts/components/conversation/Message.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ export class Message extends React.PureComponent<Props, State> {
10831083
);
10841084
}
10851085

1086-
if (isImage(attachments) || isVideo(attachments)) {
1086+
if (isSticker || isImage(attachments) || isVideo(attachments)) {
10871087
const bottomOverlay = !isSticker && !collapseMetadata;
10881088
// We only want users to tab into this if there's more than one
10891089
const tabIndex = attachments.length > 1 ? 0 : -1;

0 commit comments

Comments
 (0)