From d90d1158931452b51231a1ab1be07ab1a028ee4d Mon Sep 17 00:00:00 2001 From: Naoki Morita Date: Tue, 16 Dec 2014 12:24:57 +0900 Subject: [PATCH] Fix notification name. --- SDWebImage/SDWebImageDownloaderOperation.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDWebImage/SDWebImageDownloaderOperation.m b/SDWebImage/SDWebImageDownloaderOperation.m index 7308d2b90..3d7d76918 100644 --- a/SDWebImage/SDWebImageDownloaderOperation.m +++ b/SDWebImage/SDWebImageDownloaderOperation.m @@ -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 {