[auth][android][js] Stop removing all listeners when using phone auth

This commit is contained in:
Chris Bianca 2017-10-27 11:54:36 +01:00
parent c2d25724ff
commit 807e581ec7
1 changed files with 6 additions and 10 deletions

View File

@ -141,18 +141,14 @@ export default class PhoneAuthListener {
_removeAllListeners() {
setTimeout(() => { // move to next event loop - not sure if needed
// internal listeners
const events = Object.values(this._internalEvents);
for (let i = 0, len = events.length; i < len; i++) {
this._auth.removeAllListeners(events[i]);
}
Object.values(this._internalEvents).forEach((event) => {
this._auth.removeAllListeners(event);
});
// user observer listeners
const publicEvents = Object.values(this._publicEvents);
for (let i = 0, len = events.length; i < len; i++) {
this._auth.removeAllListeners(publicEvents[i]);
}
Object.values(this._publicEvents).forEach((publicEvent) => {
this._auth.removeAllListeners(publicEvent);
});
}, 0);
}