diff --git a/ios/Firestack/FirestackAuth.m b/ios/Firestack/FirestackAuth.m index 55d3dd0..ced2884 100644 --- a/ios/Firestack/FirestackAuth.m +++ b/ios/Firestack/FirestackAuth.m @@ -198,8 +198,8 @@ @implementation FirestackAuth } else { NSDictionary *err = @{ @"error": @"createUserWithEmailError", - @"name": @([error code]), - @"description": [error localizedDescription] + @"code": [NSString stringWithFormat:@"%d", [error code]], + @"message": [error localizedDescription] }; callback(@[err]); } diff --git a/ios/Firestack/FirestackErrors.m b/ios/Firestack/FirestackErrors.m index 7e87103..b19ab4e 100644 --- a/ios/Firestack/FirestackErrors.m +++ b/ios/Firestack/FirestackErrors.m @@ -31,8 +31,8 @@ + (NSDictionary *) handleFirebaseError:(NSString *) name { NSMutableDictionary *err = [NSMutableDictionary dictionaryWithObjectsAndKeys: name, @"name", - @([error code]), @"code", - [error localizedDescription], @"rawDescription", + [NSString stringWithFormat:@"%d", [error code]], @"code", + [error localizedDescription], @"message", [[error userInfo] description], @"userInfo", nil];