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-02-14 02:05:36 -0800
Commit
65acbec16d39a6252975de2c03e4ee895a079347
2 parents
2ad8d817
c04e4efb
Merge pull request #635 from burakkilic/patch-1
Update SDWebImagePrefetecher.m
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
SDWebImage/SDWebImagePrefetcher.m
SDWebImage/SDWebImagePrefetcher.m
View file @
65acbec
...
...
@@ -82,7 +82,7 @@
if
(
self
.
prefetchURLs
.
count
>
self
.
requestedCount
)
{
[
self
startPrefetchingAtIndex
:
self
.
requestedCount
]
;
}
else
if
(
self
.
finishedCount
==
self
.
requestedCount
)
{
else
if
(
self
.
finishedCount
+
self
.
skippedCount
==
self
.
requestedCount
)
{
[
self
reportStatus
]
;
if
(
self
.
completionBlock
)
{
self
.
completionBlock
(
self
.
finishedCount
,
self
.
skippedCount
)
;
...
...
Please
register
or
login
to post a comment