|
|
@ -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
|
|
|
|