Chris Hines

Results 34 comments of Chris Hines

Is there any way to clear this `.info()` instance from the log, or will there always be this spinner artifact + duplicates? Isn't my implementation the same as the example...

I'm getting the following error while calling `downloadFile` with `avmoroz/react-native-fs`. Anyone encountered it or can offer some advice? I also tried `wwimmo/react-native-fs` with no luck. ``` RNFS.dll!winrt::impl::consume_Windows_Foundation_IPropertyValue::Type() Line 190 C++...

It's just an import variable. `import FileSystem from 'react-native-fs';` "RNFS" doesn't work either sadly. `FileSystem.DocumentDirectoryPath` also works okay.

> Can you provide the native callstack for that AV in RNFS.dll? Thanks for the response. What's "AV" in this context? Apologies, still fairly new to navigating VS for RNW

What's interesting is the first file of my array downloads successfully: ``` Destination: C:\Users\admin\AppData\Local\Packages\7dc6f71d-85ee\LocalState/7f7c30c2.jpg Source: [redacted-base-url]/api/modules/file/objects/7f7c30c2/media/medium ``` and the second file crashes: ``` Destination C:\Users\admin\AppData\Local\Packages\7dc6f71d-85ee\LocalState/fff3c435.png Source [redacted-base-url]/api/modules/file/objects/fff3c435/media/medium ````

@chrisglein Value of below is `0x0000005316ffbd64 {Empty (0)}`:

@chrisglein Seems that whenever something is compared to `PropertyType::UInt64` the crash occurs. Removing this code block: ```cpp RN::JSValueObject values = RN::JSValueObject{ { "jobId", jobId }, { "statusCode", (int)response.StatusCode() }, {...

This issue is also being discussed in the `react-navigation` repo: https://github.com/react-navigation/react-navigation/issues/10719

Interestingly this doesn't happen to me on RNW 0.68.9. Unfortunately I have to upgrade to 0.68.11 for another [navigation related bug](https://github.com/microsoft/react-native-windows/issues/9977).

> > As a hack i set a 2nd dataset with desired [min, max] and render a transparent line. Not ideal but worked as a temp fix for me. >...