Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
yh_sdwebimage
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Olivier Poitrey
2012-11-05 19:57:15 +0100
Commit
8a55d97fc9c7b6ece4056d5543b41d1c609ec2b0
1 parent
df89ee44
Prevent caching of responses by NSURLCache (fix #211)
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
SDWebImage/SDWebImageDownloaderOperation.m
SDWebImage/SDWebImageDownloaderOperation.m
View file @
8a55d97
...
...
@@ -248,4 +248,11 @@
[
self
done
];
}
-
(
NSCachedURLResponse
*
)
connection
:
(
NSURLConnection
*
)
connection
willCacheResponse
:
(
NSCachedURLResponse
*
)
cachedResponse
{
// Prevents caching of responses
return
nil
;
}
@end
...
...
Please
register
or
login
to post a comment