mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-31 22:20:12 +00:00
Fixing warnings.
This commit is contained in:
parent
7d6acfebb5
commit
92b92f59f9
2 changed files with 6 additions and 2 deletions
|
@ -13,7 +13,9 @@
|
||||||
@synthesize appDelegate;
|
@synthesize appDelegate;
|
||||||
|
|
||||||
- (void)main {
|
- (void)main {
|
||||||
|
dispatch_sync(dispatch_get_main_queue(), ^{
|
||||||
appDelegate = [NewsBlurAppDelegate sharedAppDelegate];
|
appDelegate = [NewsBlurAppDelegate sharedAppDelegate];
|
||||||
|
});
|
||||||
|
|
||||||
NSLog(@"Cleaning stale offline images...");
|
NSLog(@"Cleaning stale offline images...");
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,9 @@
|
||||||
@synthesize appDelegate;
|
@synthesize appDelegate;
|
||||||
|
|
||||||
- (void)main {
|
- (void)main {
|
||||||
appDelegate = [NewsBlurAppDelegate sharedAppDelegate];
|
dispatch_sync(dispatch_get_main_queue(), ^{
|
||||||
|
self.appDelegate = [NewsBlurAppDelegate sharedAppDelegate];
|
||||||
|
});
|
||||||
|
|
||||||
while (YES) {
|
while (YES) {
|
||||||
BOOL fetched = [self fetchImages];
|
BOOL fetched = [self fetchImages];
|
||||||
|
|
Loading…
Add table
Reference in a new issue