This commit is contained in:
Benoit Marty 2021-05-03 21:12:17 +02:00 committed by Benoit Marty
parent 12c4f3c6f7
commit 9d225b7826
1 changed files with 2 additions and 3 deletions

View File

@ -389,9 +389,8 @@ internal class UploadContentWorker(val context: Context, params: WorkerParameter
videoInfo = videoInfo?.copy(
thumbnailUrl = if (thumbnailEncryptedFileInfo == null) thumbnailUrl else null,
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,
// height = newAttachmentAttributes?.newHeight ?: videoInfo.height,
width = newAttachmentAttributes?.newWidth ?: videoInfo.width,
height = newAttachmentAttributes?.newHeight ?: videoInfo.height,
size = newAttachmentAttributes?.newFileSize ?: videoInfo.size
)
)