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
molon
2015-04-08 18:24:52 +0800
Commit
9ae8f974253f7d91f236cdfaf9657b4ad08c3c56
1 parent
704c6305
failedURLs can be removed at the appropriate time.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
SDWebImage/SDWebImageManager.m
SDWebImage/SDWebImageManager.m
View file @
9ae8f97
...
...
@@ -199,6 +199,12 @@
}
}
else
{
if
((
options
&
SDWebImageRetryFailed
))
{
@synchronized
(
self
.
failedURLs
)
{
[
self
.
failedURLs
removeObject
:
url
]
;
}
}
BOOL
cacheOnDisk
=
!
(
options
&
SDWebImageCacheMemoryOnly
)
;
if
(
options
&
SDWebImageRefreshCached
&&
image
&&
!
downloadedImage
)
{
...
...
Please
register
or
login
to post a comment