Skip to content

Commit

Permalink
wrong type of bool
Browse files Browse the repository at this point in the history
  • Loading branch information
lufinkey committed Mar 9, 2019
1 parent 1323aeb commit 5dfce85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/RNSpotifyAuth.m
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ -(void)renewSession:(RNSpotifyCompletion*)completion waitForDefinitiveResponse:(
_renewingSession = NO;

// determine if session was renewed
BOOL _renewed = false;
BOOL _renewed = NO;
if(error == nil && _session != nil && _session.refreshToken != nil) {
NSString* newAccessToken = result[@"access_token"];
NSNumber* expireSeconds = result[@"expires_in"];
Expand Down

0 comments on commit 5dfce85

Please sign in to comment.