Fixed memory leak in BlocklistDownloader (#4309)
This commit is contained in:
parent
7aad5870ce
commit
ec1e679395
|
@ -94,6 +94,7 @@ BlocklistDownloader* fBLDownloader = nil;
|
|||
[NSUserDefaults.standardUserDefaults setObject:[NSDate date] forKey:@"BlocklistNewLastUpdate"];
|
||||
[BlocklistScheduler.scheduler updateSchedule];
|
||||
|
||||
[self.fSession finishTasksAndInvalidate];
|
||||
fBLDownloader = nil;
|
||||
});
|
||||
}
|
||||
|
@ -153,6 +154,7 @@ BlocklistDownloader* fBLDownloader = nil;
|
|||
|
||||
[NSNotificationCenter.defaultCenter postNotificationName:@"BlocklistUpdated" object:nil];
|
||||
|
||||
[self.fSession finishTasksAndInvalidate];
|
||||
fBLDownloader = nil;
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue