Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Commit 531fae8

Browse files
committed
Fix type mismatch warning.
1 parent 602ad0e commit 531fae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Providers/FacebookWeb/SimpleAuthFaceBookWebProvider.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ - (NSDictionary *)dictionaryWithAccount:(NSDictionary *)account accessToken:(NSD
140140

141141
// Credentials
142142
NSTimeInterval expiresAtInterval = [accessToken[@"expires_in"] doubleValue];
143-
NSData *expiresAtDate = [NSDate dateWithTimeIntervalSinceNow:expiresAtInterval];
143+
NSDate *expiresAtDate = [NSDate dateWithTimeIntervalSinceNow:expiresAtInterval];
144144
dictionary[@"credentials"] = @{
145145
@"token" : accessToken[@"access_token"],
146146
@"expires_at" : expiresAtDate

0 commit comments

Comments
 (0)