Closed anirudhamahale closed 1 year ago
Same here. When I deintegrate Netfox pod, everything works.
Thanks for the report. Will check as soon as possible.
It's been more than a year, has this issue been fixed?
Yes it's been fixed @renanstig
I am using 1.21.0 version of netfox and 5.6.4 of Alamofire, in the below progress handler doesnt get called
` AF.upload(multipartFormData: { formData in
for (key, value) in formFields {
if let data = value.data(using: .utf8) {
formData.append(data, withName: key)
}
}
formData.append(url, withName: formFields["name"] ?? "attachment")
}, with: request).uploadProgress { progress in
progressHandler?(progress.fractionCompleted)
}.responseData
`
I am using 1.21.0 version of netfox and 5.6.4 of Alamofire, in the below progress handler doesnt get called
` AF.upload(multipartFormData: { formData in
for (key, value) in formFields { if let data = value.data(using: .utf8) { formData.append(data, withName: key) } } formData.append(url, withName: formFields["name"] ?? "attachment") }, with: request).uploadProgress { progress in progressHandler?(progress.fractionCompleted) }.responseData
`
Unfortunately I have faced the same issue as you, even though they say the problem is fixed, it isn’t
my workaround to it was to deactivate Netfox before the upload starts and then restart it after it’s done
Describe the bug I use Alamofire for network request & netfox for logging the request. The
uploadProgress
closure never gets called if I enable the netfox like soNFX.sharedInstance().start()
in AppDelegate.Enviroment:
Additional context here is the link to the issue from Alamofire