regenerate the quoted attachment thumbnail when retrying to send the message

pull/800/head
Ryan Zhao 2 years ago
parent 84ea821095
commit 3aacf27b79

@ -1606,9 +1606,15 @@ extension ConversationVC:
if if
let quote = try? interaction.quote.fetchOne(db), let quote = try? interaction.quote.fetchOne(db),
let quotedInteraction = try? quote.interaction.fetchOne(db) let quotedAttachment = try? quote.attachment.fetchOne(db),
quotedAttachment.isVisualMedia,
quotedAttachment.downloadUrl == Attachment.nonMediaQuoteFileId,
let quotedInteraction = try? quote.originalInteraction.fetchOne(db)
{ {
let attachment = try? quotedInteraction.attachments.fetchAll(db).first
try quote.with(
attachmentId: attachment?.cloneAsQuoteThumbnail()?.inserted(db).id
).update(db)
} }
try MessageSender.send( try MessageSender.send(

@ -885,16 +885,13 @@ extension Attachment {
guard guard
self.isValid, self.isValid,
self.isVisualMedia,
let thumbnailPath: String = Attachment.originalFilePath( let thumbnailPath: String = Attachment.originalFilePath(
id: cloneId, id: cloneId,
mimeType: OWSMimeTypeImageJpeg, mimeType: OWSMimeTypeImageJpeg,
sourceFilename: thumbnailName sourceFilename: thumbnailName
) )
else { else {
return nil
}
guard self.isVisualMedia else {
// Non-media files cannot have thumbnails but may be sent as quotes, in these cases we want // Non-media files cannot have thumbnails but may be sent as quotes, in these cases we want
// to create an attachment in an 'uploaded' state with a hard-coded file id so the messageSend // to create an attachment in an 'uploaded' state with a hard-coded file id so the messageSend
// job doesn't try to upload the attachment (we include the original `serverId` as it's // job doesn't try to upload the attachment (we include the original `serverId` as it's

@ -76,6 +76,26 @@ public struct Quote: Codable, Equatable, Hashable, FetchableRecord, PersistableR
} }
} }
// MARK: - Mutation
public extension Quote {
func with(
interactionId: Int64? = nil,
authorId: String? = nil,
timestampMs: Int64? = nil,
body: String? = nil,
attachmentId: String? = nil
) -> Quote {
return Quote(
interactionId: interactionId ?? self.interactionId,
authorId: authorId ?? self.authorId,
timestampMs: timestampMs ?? self.timestampMs,
body: body ?? self.body,
attachmentId: attachmentId ?? self.attachmentId
)
}
}
// MARK: - Protobuf // MARK: - Protobuf
public extension Quote { public extension Quote {

Loading…
Cancel
Save