Add comment

This commit is contained in:
Tulir Asokan 2021-08-19 19:19:56 +03:00
parent b3312bc663
commit da9fadb009

View file

@ -2116,6 +2116,9 @@ func (portal *Portal) convertMatrixMessage(sender *User, evt *event.Event) (*waP
if msg != nil { if msg != nil {
ctxInfo.StanzaId = &msg.JID ctxInfo.StanzaId = &msg.JID
ctxInfo.Participant = &msg.Sender ctxInfo.Participant = &msg.Sender
// Using blank content here seems to work fine on all official WhatsApp apps.
// Getting the content from the phone would be possible, but it's complicated.
// https://github.com/mautrix/whatsapp/commit/b3312bc663772aa274cea90ffa773da2217bb5e0
ctxInfo.QuotedMessage = fallbackQuoteContent() ctxInfo.QuotedMessage = fallbackQuoteContent()
} }
} }