Fix sending quoted voice notes in 1:1 chats via IndividualSendJobV2.

Co-authored-by: Greyson Parrelli <greyson@signal.org>
This commit is contained in:
Cody Henthorne
2026-06-05 14:28:16 -04:00
committed by GitHub
co-authored by Greyson Parrelli
parent aa9591211b
commit 7c7c364fef
@@ -171,7 +171,7 @@ private fun Attachment.toQuoteAttachmentProto(): Either<DataMessageError, DataMe
DataMessage.Quote.QuotedAttachment(
contentType = quoteTargetContentType ?: MediaUtil.IMAGE_JPEG,
fileName = fileName,
thumbnail = toAttachmentPointerProto().bind()
thumbnail = toAttachmentPointerProto().getOrNull()
)
}