transparency disabled if png and text are present

pull/1804/head
Audric Ackermann 4 years ago
parent f9ecfccc0a
commit e5bbfc8c1e
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -576,7 +576,7 @@ class MessageInner extends React.PureComponent<Props, State> {
}
public isShowingImage(): boolean {
const { attachments, previews } = this.props;
const { attachments, previews, text } = this.props;
const { imageBroken } = this.state;
if (imageBroken) {
@ -585,9 +585,10 @@ class MessageInner extends React.PureComponent<Props, State> {
if (attachments && attachments.length) {
const displayImage = canDisplayImage(attachments);
const hasText = text?.length;
return Boolean(
displayImage &&
!hasText &&
((isImage(attachments) && hasImage(attachments)) ||
(isVideo(attachments) && hasVideoScreenshot(attachments)))
);

Loading…
Cancel
Save