Skip to content

Commit efb0b35

Browse files
committed
SDWebImageDownloaderOperation: call endBackgroundTask after operation is finished so that beginBackgroundTaskWithExpirationHandler and endBackgroundTask are balanced
1 parent 938c2e0 commit efb0b35

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

SDWebImage/SDWebImageDownloaderOperation.m

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,13 @@ - (void)start {
108108
self.completedBlock(nil, nil, [NSError errorWithDomain:NSURLErrorDomain code:0 userInfo:@{NSLocalizedDescriptionKey : @"Connection can't be initialized"}], YES);
109109
}
110110
}
111+
112+
#if TARGET_OS_IPHONE && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_4_0
113+
if (self.backgroundTaskId != UIBackgroundTaskInvalid) {
114+
[[UIApplication sharedApplication] endBackgroundTask:self.backgroundTaskId];
115+
self.backgroundTaskId = UIBackgroundTaskInvalid;
116+
}
117+
#endif
111118
}
112119

113120
- (void)cancel {

0 commit comments

Comments
 (0)