mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 05:31:21 +03:00
Move variable declaration
This commit is contained in:
parent
3a659a9f3b
commit
ad984b26fb
1 changed files with 2 additions and 4 deletions
|
@ -100,10 +100,6 @@ internal class UploadContentWorker(val context: Context, params: WorkerParameter
|
||||||
val sessionComponent = getSessionComponent(params.sessionId) ?: return Result.success()
|
val sessionComponent = getSessionComponent(params.sessionId) ?: return Result.success()
|
||||||
sessionComponent.inject(this)
|
sessionComponent.inject(this)
|
||||||
|
|
||||||
val attachment = params.attachment
|
|
||||||
|
|
||||||
var newImageAttributes: NewImageAttributes? = null
|
|
||||||
|
|
||||||
val allCancelled = params.events.all { cancelSendTracker.isCancelRequestedFor(it.eventId, it.roomId) }
|
val allCancelled = params.events.all { cancelSendTracker.isCancelRequestedFor(it.eventId, it.roomId) }
|
||||||
if (allCancelled) {
|
if (allCancelled) {
|
||||||
// there is no point in uploading the image!
|
// there is no point in uploading the image!
|
||||||
|
@ -111,6 +107,7 @@ internal class UploadContentWorker(val context: Context, params: WorkerParameter
|
||||||
.also { Timber.e("## Send: Work cancelled by user") }
|
.also { Timber.e("## Send: Work cancelled by user") }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val attachment = params.attachment
|
||||||
val filesToDelete = mutableListOf<File>()
|
val filesToDelete = mutableListOf<File>()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -181,6 +178,7 @@ internal class UploadContentWorker(val context: Context, params: WorkerParameter
|
||||||
|
|
||||||
return try {
|
return try {
|
||||||
val fileToUpload: File
|
val fileToUpload: File
|
||||||
|
var newImageAttributes: NewImageAttributes? = null
|
||||||
|
|
||||||
if (attachment.type == ContentAttachmentData.Type.IMAGE && params.compressBeforeSending) {
|
if (attachment.type == ContentAttachmentData.Type.IMAGE && params.compressBeforeSending) {
|
||||||
fileToUpload = imageCompressor.compress(context, workingFile, MAX_IMAGE_SIZE, MAX_IMAGE_SIZE)
|
fileToUpload = imageCompressor.compress(context, workingFile, MAX_IMAGE_SIZE, MAX_IMAGE_SIZE)
|
||||||
|
|
Loading…
Reference in a new issue