my code is something like this:
Alamofire.upload(multipartFormData: { (data) in
// add bunch of large size images
}
.uploadProgress { progress in
// print progress
}
.downloadProgress { progress in
// print progress
}
the problem is that uploadProgress takes too long to refresh compared to downloadProgress
is there any way to make uploadProgress update more frequently?
btw: im using alamofire 5