Fix replies to image-only messages
This commit is contained in:
parent
b95dd207ca
commit
2d35fa8f57
2 changed files with 59 additions and 33 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue