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
Both firebase_list_factory.js and firebase_object_factory.js return a cancel function which internally calls ref.off(); However, since no arguments are provided, this has the side effect of terminating any other listeners attached to that database path and could lead to some unexpected and hard to debug behaviors.
We should change this to include the event and callback function in the calls to off().
The text was updated successfully, but these errors were encountered:
katowulf
added a commit
to katowulf/angularfire2
that referenced
this issue
Aug 24, 2016
Both firebase_list_factory.js and firebase_object_factory.js return a cancel function which internally calls
ref.off();
However, since no arguments are provided, this has the side effect of terminating any other listeners attached to that database path and could lead to some unexpected and hard to debug behaviors.We should change this to include the event and callback function in the calls to off().
The text was updated successfully, but these errors were encountered: