From 327c444322e1ce618fb4f7797e70903ef200a271 Mon Sep 17 00:00:00 2001 From: Naoki Morita Date: Tue, 16 Dec 2014 12:23:41 +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 7308d2b9..3d7d7691 100644 --- a/SDWebImage/SDWebImageDownloaderOperation.m +++ b/SDWebImage/SDWebImageDownloaderOperation.m @@ -215,7 +215,7 @@ NSString *const SDWebImageDownloadFinishNotification = @"SDWebImageDownloadFinis 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 {