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
This works fine, as expected. However, I noticed that getStoredValue is hit in a strange way.
You can see it calls this.ref.child(path). In my case, path is /foobutthis.ref is alreadyxyz.firebaseio.com/foo so it tries to resolve /foo/foo. Surprisingly, this doesn't seem to affect anything, foo is still set correctly, but it definitely looks wrong still.
The text was updated successfully, but these errors were encountered:
I see the same behavior. My ref is set to path so call this.ref.child(path) calls foo/foo. Unlike 43081j, it doesn't work fine for me. To resolve it I had to remove .child(path)
I'm not sure if this is a bug or expected behaviour, but say I have the following:
This works fine, as expected. However, I noticed that getStoredValue is hit in a strange way.
You can see it calls
this.ref.child(path)
. In my case,path
is/foo
butthis.ref
is alreadyxyz.firebaseio.com/foo
so it tries to resolve/foo/foo
. Surprisingly, this doesn't seem to affect anything,foo
is still set correctly, but it definitely looks wrong still.The text was updated successfully, but these errors were encountered: