Fix replies to image-only messages

This commit is contained in:
Evan Hahn 2021-04-02 16:35:28 -05:00 committed by Josh Perez
parent b95dd207ca
commit 2d35fa8f57
2 changed files with 59 additions and 33 deletions

View file

@ -115,7 +115,7 @@ export type PropsData = {
attachments?: Array<AttachmentType>;
quote?: {
text: string;
attachment?: QuotedAttachmentType;
rawAttachment?: QuotedAttachmentType;
isFromMe: boolean;
sentAt: number;
authorId: string;
@ -1030,7 +1030,7 @@ export class Message extends React.PureComponent<Props, State> {
i18n={i18n}
onClick={clickHandler}
text={quote.text}
rawAttachment={quote.attachment}
rawAttachment={quote.rawAttachment}
isIncoming={direction === 'incoming'}
authorPhoneNumber={quote.authorPhoneNumber}
authorProfileName={quote.authorProfileName}