Skip to content

Commit

Permalink
Updated SDWebImage#976 according to comments via review
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Poplauschi committed Sep 30, 2015
1 parent 577fefa commit a16d007
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SDWebImage/SDImageCache.m
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ - (NSString *)cachedFileNameForKey:(NSString *)key {
}
unsigned char r[CC_MD5_DIGEST_LENGTH];
CC_MD5(str, (CC_LONG)strlen(str), r);
NSString *filename = [NSString stringWithFormat:@"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x.%@",
r[0], r[1], r[2], r[3], r[4], r[5], r[6], r[7], r[8], r[9], r[10], r[11], r[12], r[13], r[14], r[15],
[key pathExtension]];
NSString *filename = [NSString stringWithFormat:@"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%@",
r[0], r[1], r[2], r[3], r[4], r[5], r[6], r[7], r[8], r[9], r[10],
r[11], r[12], r[13], r[14], r[15], [[key pathExtension] isEqualToString:@""] ? @"" : [NSString stringWithFormat:@".%@", [key pathExtension]]];

return filename;
}
Expand Down

0 comments on commit a16d007

Please sign in to comment.