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
Andy LaVoy
2013-05-08 15:35:37 -0700
Commit
827fcac89bc308a7b54355a056e869626e8d99fb
1 parent
899d67ba
call progress block regardless of completion block, options
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
SDWebImage/SDWebImageDownloaderOperation.m
SDWebImage/SDWebImageDownloaderOperation.m
View file @
827fcac
...
...
@@ -241,13 +241,11 @@
}
CFRelease
(
imageSource
);
NSUInteger
received
=
self
.
imageData
.
length
;
if
(
self
.
progressBlock
)
{
self
.
progressBlock
(
received
,
self
.
expectedSize
);
}
}
if
(
self
.
progressBlock
)
{
self
.
progressBlock
(
self
.
imageData
.
length
,
self
.
expectedSize
);
}
}
...
...
Please
register
or
login
to post a comment