Skip to content

Commit

Permalink
Merge pull request jeduan#45 from gillesperrin/master
Browse files Browse the repository at this point in the history
  • Loading branch information
jeduan committed Sep 18, 2015
2 parents e3cf0f9 + 08f5cbd commit 5351a20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ios/FacebookConnectPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -478,12 +478,12 @@ - (NSDictionary *)responseObject {

response[@"status"] = @"connected";
response[@"authResponse"] = @{
@"accessToken" : token.tokenString,
@"accessToken" : token.tokenString ? token.tokenString : @"",
@"expiresIn" : expiresIn,
@"secret" : @"...",
@"session_key" : [NSNumber numberWithBool:YES],
@"sig" : @"...",
@"userID" : token.userID
@"userID" : token.userID ? token.userID : @""
};


Expand Down

0 comments on commit 5351a20

Please sign in to comment.