Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion TWRDownloadManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,14 @@ - (void)downloadFileForURL:(NSString *)urlString
remainingTime:(void(^)(NSUInteger seconds))remainingTimeBlock
completionBlock:(void(^)(BOOL completed))completionBlock
enableBackgroundMode:(BOOL)backgroundMode {

[self downloadFileForURL:urlString
withName:fileName
inDirectoryNamed:directory
friendlyName:fileName
progressBlock:progressBlock
remainingTime:remainingTimeBlock
completionBlock:completionBlock
enableBackgroundMode:backgroundMode];
}

- (void)downloadFileForURL:(NSString *)url
Expand Down