fix replying to audio message crash

Fixes #1657
pull/1624/head
Audric Ackermann 4 years ago
parent 9c8f935e03
commit 9c568caf1f
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -5,6 +5,7 @@ import { ReplyingToMessageProps } from './SessionCompositionBox';
import styled, { DefaultTheme, ThemeContext } from 'styled-components';
import { getAlt, isAudio, isImageAttachment } from '../../../types/Attachment';
import { Image } from '../../conversation/Image';
import { AUDIO_MP3 } from '../../../types/MIME';
// tslint:disable: react-unused-props-and-state
interface Props {
@ -50,7 +51,9 @@ export const SessionQuotedMessageComposition = (props: Props) => {
let hasImageAttachment = false;
let firstImageAttachment;
if (attachments && attachments.length > 0) {
// we have to handle the case we are trying to reply to an audio message
if (attachments?.length && attachments[0].contentType !== AUDIO_MP3 && attachments[0].thumbnail) {
firstImageAttachment = attachments[0];
hasImageAttachment = true;
}

Loading…
Cancel
Save