Keith Axline
Keith Axline
In `pullChanges` I'm returning a changes object that has the same `id` in the `created` array of records and in the `updated` array. I'm getting the error that the `Server...
I'm getting a `413 Payload Too Large` error when trying to create an `Item` with binary content that's 6MB. I haven't tested where the cutoff is yet, but I was...
I'm trying to create an `Item` with 1MB of binary content in React Native, and there are two methods running over 13 seconds each: `CryptoManager.encrypt` https://github.com/etesync/etebase-js/blob/a42c0678ad539915d517aa8fb90d844e2acb6949/src/Crypto.ts#L131 and `CryptoManager.calculateMac` https://github.com/etesync/etebase-js/blob/a42c0678ad539915d517aa8fb90d844e2acb6949/src/Crypto.ts#L186 I...
https://github.com/etesync/etebase-js/blob/a32903794f5caee38359a42169efae126ba81b4f/src/Crypto.ts#L25 This one is tricky and I don't have time to make a project that reproduces it, but wanted to note it here just in case anyone has some bright...
Here's the error I received immediately after installing `react-native-etebase`: ``` FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':react-native-sodium:mergeDebugNativeLibs'. > A failure occurred while...
Hi there, I notice that the app uses `randomBytes` from `react-native-crypto` and from what I understand that is only pseudo-random. Here are a couple of the locations I found: https://github.com/internxt/drive-mobile/blob/ba565cbfbcc4759dfc9fed707cc4c7bb27437e03/src/network/NetworkFacade.ts#L2...