Version info
Angular: 8.2.14
Firebase: 7.8.0
AngularFire: 5.4.0
How to reproduce these conditions
In #2294, AngularFireAuth.authState had been incorrectly refactored to used auth.onIdTokenChanged. It should be auth.onAuthStateChanged
|
this.authState = new Observable<User | null>(subscriber => { |
|
return zone.runOutsideAngular(() => this.auth.onIdTokenChanged(subscriber)); |
|
}).pipe(keepUnstableUntilFirst);; |
This only applies to v5 branch, does not effect master branch.