Skip to content

Commit

Permalink
Fix notification name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoki Morita committed Dec 16, 2014
1 parent cd977d7 commit d90d115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SDWebImage/SDWebImageDownloaderOperation.m
Expand Up @@ -215,7 +215,7 @@ - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLRespon
self.imageData = [[NSMutableData alloc] initWithCapacity:expected];
self.response = response;
dispatch_async(dispatch_get_main_queue(), ^{
[[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadResponseNotification object:self];
[[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadReceiveResponseNotification object:self];
});
}
else {
Expand Down

0 comments on commit d90d115

Please sign in to comment.