This commit is contained in:
Benoit Marty 2021-05-03 21:12:17 +02:00 committed by Benoit Marty
parent 12c4f3c6f7
commit 9d225b7826

View File

@ -389,9 +389,8 @@ internal class UploadContentWorker(val context: Context, params: WorkerParameter
videoInfo = videoInfo?.copy( videoInfo = videoInfo?.copy(
thumbnailUrl = if (thumbnailEncryptedFileInfo == null) thumbnailUrl else null, thumbnailUrl = if (thumbnailEncryptedFileInfo == null) thumbnailUrl else null,
thumbnailFile = thumbnailEncryptedFileInfo?.copy(url = thumbnailUrl), thumbnailFile = thumbnailEncryptedFileInfo?.copy(url = thumbnailUrl),
// FIXME for now, the video size is not updated, but if it was, this code is not working. width = newAttachmentAttributes?.newWidth ?: videoInfo.width,
// width = newAttachmentAttributes?.newWidth ?: videoInfo.width, height = newAttachmentAttributes?.newHeight ?: videoInfo.height,
// height = newAttachmentAttributes?.newHeight ?: videoInfo.height,
size = newAttachmentAttributes?.newFileSize ?: videoInfo.size size = newAttachmentAttributes?.newFileSize ?: videoInfo.size
) )
) )