We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 483e15f commit a85f5faCopy full SHA for a85f5fa
ios/Firestack/FirestackAuth.m
@@ -186,7 +186,8 @@ @implementation FirestackAuth
186
FIRUser *user = [FIRAuth auth].currentUser;
187
188
if (user != nil) {
189
- NSDictionary *userProps = [self userPropsFromFIRUser:user];
+ NSMutableDictionary *userProps = [self userPropsFromFIRUser:user];
190
+ [userProps setValue: @((BOOL)true) forKey: @"authenticated"];
191
callback(@[[NSNull null], userProps]);
192
} else {
193
// No user is signed in.
0 commit comments