Skip to content

Commit

Permalink
Add missing argument for calling image download completion block (#1106)
Browse files Browse the repository at this point in the history
  • Loading branch information
maicki committed Sep 15, 2018
1 parent 1f0a213 commit 2092279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples_extra/Multiplex/Sample/ScreenNode.m
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ - (nullable id)downloadImageWithURL:(NSURL *)URL
}

if (completion) {
completion([UIImage imageWithData:data], connectionError, nil);
completion([UIImage imageWithData:data], connectionError, nil, nil);
}
});
};
Expand Down

0 comments on commit 2092279

Please sign in to comment.