Skip to content

Commit

Permalink
Merge pull request #56 from aftercode/master
Browse files Browse the repository at this point in the history
RN 0.32.0 - loadImageWithTag is now loadImageWithURLRequest
  • Loading branch information
BlakeWilliams authored Jan 23, 2017
2 parents da52087 + 059a360 commit 91a26ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ActivityView.m
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ - (NSArray*)excludedActivitiesForKeys:(NSArray*)passedKeys {

__weak ActivityView *weakSelf = self;

[loader loadImageWithTag:imageUrl callback:^(NSError *error, id imageOrData) {
[loader loadImageWithURLRequest:imageUrl callback:^(NSError *error, id imageOrData) {
if (!error) {
if ([imageOrData isKindOfClass:[NSData class]]) {
shareImage = [UIImage imageWithData:imageOrData];
Expand Down

0 comments on commit 91a26ad

Please sign in to comment.