milestone/stable-1-reconcile-auth-3 #176
@ -101,9 +101,12 @@ class AuthenticationFirebaseDataSourceImpl
 | 
			
		||||
  @override
 | 
			
		||||
  Stream<Account?> streamAccount() =>
 | 
			
		||||
      _firebaseAuth.userChanges().map<Account?>((user) {
 | 
			
		||||
        if (user.isNull) {
 | 
			
		||||
          return null;
 | 
			
		||||
        }
 | 
			
		||||
        try {
 | 
			
		||||
          return AccountModelFirebase.fromFirebaseUser(user);
 | 
			
		||||
        } on FirebaseAuthException {
 | 
			
		||||
        } on Exception {
 | 
			
		||||
          return null;
 | 
			
		||||
        }
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user