-
Notifications
You must be signed in to change notification settings - Fork 152
Incorrect data in callback [email protected] #420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Also the data format looks different on Android and Windows Android (object): Windows (array with object): |
For now I adjusted
|
Yes, this was generated as per the codegen Spec file which had
|
I would say the codegen ist wrong here. It should be a plain object, no need for wrapping it in an array. |
Hello,
After upgrading to 0.22.1 I noticed that there is an issue with returning data from
ReactNativeBlobUtil.df
on windows.I'm calling this method
const availableDiskSpace = await ReactNativeBlobUtil.fs.df();
but instead of information about storage the error is thrown with message{"code":"EUNSPECIFIED"}
After checking the df method code I noticed that on windows the storage info is populated in err argument
Calling the same method on android works fine - err is null and stat contains storage info
The text was updated successfully, but these errors were encountered: