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
Plain Diff
Browse Files
Authored by
Olivier Poitrey
2014-04-16 20:22:13 -0700
Commit
88e6ca3e497c6d42f70a9d24261a428d54437923
2 parents
db861611
1f202ed7
Merge pull request #694 from shifu/master
Port Max's crash fix to my 3.6 fork
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
SDWebImage/SDWebImagePrefetcher.m
SDWebImage/SDWebImagePrefetcher.m
View file @
88e6ca3
...
...
@@ -84,7 +84,9 @@
}
if
(
self
.
prefetchURLs
.
count
>
self
.
requestedCount
)
{
[
self
startPrefetchingAtIndex
:
self
.
requestedCount
]
;
dispatch_async
(
dispatch_get_main_queue
(),
^
{
[
self
startPrefetchingAtIndex
:
self
.
requestedCount
]
;
})
;
}
else
if
(
self
.
finishedCount
+
self
.
skippedCount
==
self
.
requestedCount
)
{
[
self
reportStatus
]
;
...
...
Please
register
or
login
to post a comment