Add missing argument for calling image download completion block (#1106)

This commit is contained in:
Michael Schneider 2018-09-15 08:04:46 -07:00 committed by GitHub
parent 1f0a213fe9
commit 209227908e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,7 +136,7 @@
}
if (completion) {
completion([UIImage imageWithData:data], connectionError, nil);
completion([UIImage imageWithData:data], connectionError, nil, nil);
}
});
};