Frikkie Snyman
Frikkie Snyman
For anyone else struggling with this in the future, I made a fork here: https://github.com/relivecc/react-native-photos-framework If `includeMetadata` is set to true when calling `getAssets`, then it will return a `videoUrl`...
@Ridwansameer Check the `resourcesMetadata` array that is returned with the asset. Make sure that you have `includeResourcesMetadata: true` in the `getAssets` props param, ie: ``` RNPhotosFramework.getAssets({ ... includeResourcesMetadata: true, ......
@mnishizawa Sorry for only replying now. I had to workaround it by just renaming the class to a different, more specifice name...
@mjmasn that typo seems to be addressed here: https://github.com/facebook/react-native/pull/35387
@JakeChampion keen to hear if you have some thoughts on this!
@louiszawadzki Thanks - it would be appreciated if you can take care of the tests. I'm not able to take the time to set up this repo locally!
PR created here: https://github.com/DataDog/datadog-ci/pull/1190
Also running into this - we wrapped this library assuming the types are correct. However, we soon noticed that the `wasSuccessful` is never `false`, and instead, we get errors being...
In the meantime, behaviour that aligns with the types can be achieved by overriding the `RESTClientBuilder`: ```typescript class NonThrowableRESTClient extends DefaultRESTClient { override async go(): Promise { try { return...