You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a transaction is pending for a node, it doesn't show up when reading data for the parent node with .once("value", ...). I'm not sure if this is a bug or intended behavior.
[REQUIRED] Step 2: Describe your environment
[REQUIRED] Step 3: Describe the problem
If a transaction is pending for a node, it doesn't show up when reading data for the parent node with
.once("value", ...)
. I'm not sure if this is a bug or intended behavior.Steps to reproduce:
For these examples, our database looks like this:
This code works as expected:
Logs:
[ 'a', 'b', 'c' ]
This code does NOT work as expected:
Logs:
[ 'a', <1 empty item>, 'c' ]
Adding a transaction first, which seems like a no-op, actually causes the read to return a different result.
The text was updated successfully, but these errors were encountered: