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

Commit 0437d64

Browse files
author
Vikas Dadheech
committed
Fix a method call
1 parent c3ac3ed commit 0437d64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MSGraphCoreSDK/MSGraphCoreSDK/Models/MSCollection.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ - (instancetype)initWithData:(NSData *)data error:(NSError *__autoreleasing *)er
2525
if(self)
2626
{
2727
self.value = [[self getDictionary] objectForKey:@"value"];
28-
self.nextLink = [NSURL URLWithString:[[self dictionaryFromItem] objectForKey:@"@odata.nextLink"]];
28+
self.nextLink = [NSURL URLWithString:[[self getDictionary] objectForKey:@"@odata.nextLink"]];
2929
self.additionalData = [self getDictionary];
3030
}
3131
return self;

0 commit comments

Comments
 (0)