Maneesh Tewani
Maneesh Tewani
@carterbs - I've tried to reproduce by changing wi-fi networks in the middle of the transaction, but was unsuccessful. I will try and reproduce using wired -> wireless and will...
@carterbs can you also provide some more information on your use-case? 1. When you start the app, you are online, and are you currently running a transaction, and in the...
@carterbs - thank you for the thorough response! Just want to make sure that I follow your exact repo and am not missing anything. Will keep you posted.
@tylim88 - can you please fix the formatting issue?
That syntax doesn't quite match v9, but your suggestions should work. For v9, you still need to update https://github.com/firebase/firebase-js-sdk/blob/d87d3a8b8cd68e757be6628a72538bfd303e78d1/packages/database/src/api/Reference_impl.ts#L397
If you could create a PR addressing this, that would be great
If you're looking at the root, then: ```typescript import { getDatabase } from 'firebase/database'; const rootSnapshot = await get(ref(getDatabase())); rootSnapshot.forEach(node => { console.log(node.key); }); ``` Out of curiosity, are you...
@rhodgkins thank you for your contribution. However, we will have to rollback this change as it is causing a compilation error with AngularFire. We will add this back on the...
It seems like there are multiple problems here, as applying the fix from https://github.com/facebook/react-native/pull/31392 doesn't quite work for me. As mentioned [here](https://github.com/facebook/react-native/issues/35096#issuecomment-1304321437), there seems to be a race condition between...
I started looking into this due to https://github.com/firebase/firebase-js-sdk/issues/5848. I found that the issue is due to the fact that when the data is being sent out, the blob isn't yet...