diff options
Diffstat (limited to 'Juick')
-rw-r--r-- | Juick/Juick-Info.plist | 2 | ||||
-rw-r--r-- | Juick/MessagesViewController.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Juick/Juick-Info.plist b/Juick/Juick-Info.plist index f89e3d3..b9e59e9 100644 --- a/Juick/Juick-Info.plist +++ b/Juick/Juick-Info.plist @@ -9,7 +9,7 @@ <key>CFBundleExecutable</key> <string>${EXECUTABLE_NAME}</string> <key>CFBundleIdentifier</key> - <string>com.juick.${PRODUCT_NAME:rfc1034identifier}</string> + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> diff --git a/Juick/MessagesViewController.m b/Juick/MessagesViewController.m index 7e3f01a..ff7e556 100644 --- a/Juick/MessagesViewController.m +++ b/Juick/MessagesViewController.m @@ -145,7 +145,7 @@ static NSMutableDictionary *heightsCache; [cell setMessage:msg]; if ([msg.attach length] > 0) { SDWebImageManager * manager = [SDWebImageManager sharedManager]; - [manager downloadWithURL:[NSURL URLWithString:msg.attach] options:SDWebImageContinueInBackground progress:^(NSUInteger receivedSize, long long expectedSize) { + [manager downloadWithURL:[NSURL URLWithString:msg.attach] options:SDWebImageContinueInBackground progress:^(NSInteger receivedSize, NSInteger expectedSize) { // <#code#> } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished) { [cell.attach setImage:[UIImage imageWithImage:image convertToWidth:300.0f]]; |