shyambhat / InstagramKit

The unofficial Instagram iOS SDK
MIT License
970 stars 266 forks source link

Need fix InstagramUser.m #277

Closed chepil closed 6 years ago

chepil commented 6 years ago
//self.fullName = [[NSString alloc] initWithString:info[kFullName]]; //CRASH
self.fullName =IKNotNull(info[kFullName]) ? [[NSString alloc] initWithString:info[kFullName]] : nil;
philipengberg commented 6 years ago

Seems to have been fixed by @stremsdoerfer a few days ago: https://github.com/shyambhat/InstagramKit/commit/ce42df0deccddddcaed8cc5c7d5eff5d60c8cc42. Now we just need a release to CocoaPods @shyambhat 🙏

philipengberg commented 6 years ago

I'm using

pod 'InstagramKit', :git => 'https://github.com/shyambhat/InstagramKit', :branch => 'master'

in the mean time.

shyambhat commented 6 years ago

This issue is resolved. https://github.com/shyambhat/InstagramKit/pull/278 Thanks.