This repository was archived by the owner on Mar 16, 2019. It is now read-only.
This repository was archived by the owner on Mar 16, 2019. It is now read-only.
progress not working when using { count: 1 } on iOS but works on android #333
Open
Description
When trying to download file to the cash folder I'm using progress to print the received data
When I use count: 1 in the progress it works perfect on android but on iOS it's not working
the file downloaded but the code in progress section never executed
RNFetchBlob.config({ path: cashfolderpath })
.fetch('GET', url, {
}).progress({ count: 1 }, (received, total) => {
//Action won't execute code here when using count
}).then((res) => {