mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixing progress in image caching.
This commit is contained in:
parent
c532ae9e9e
commit
489c9a3195
1 changed files with 2 additions and 2 deletions
|
@ -2359,7 +2359,7 @@
|
|||
if ([hashes count] == 0) {
|
||||
NSLog(@"Finished downloading unread stories. %d total", self.totalUnfetchedStoryCount);
|
||||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
// [self.feedsViewController hideNotifier];
|
||||
[self.feedsViewController showCachingNotifier:0 hoursBack:1];
|
||||
[self fetchAllUncachedImages];
|
||||
});
|
||||
return;
|
||||
|
@ -2448,7 +2448,7 @@
|
|||
self.remainingUncachedImagesCount = count;
|
||||
}
|
||||
|
||||
int limit = 25;
|
||||
int limit = 10;
|
||||
NSString *order;
|
||||
if ([[[NSUserDefaults standardUserDefaults] objectForKey:@"default_order"] isEqualToString:@"oldest"]) {
|
||||
order = @"ASC";
|
||||
|
|
Loading…
Add table
Reference in a new issue