From 96a98455a1740f41c9d3adf6b0854f7f1c86f638 Mon Sep 17 00:00:00 2001 From: Anton Filatov Date: Mon, 14 Nov 2016 15:29:43 +0300 Subject: [PATCH] fixes empty method --- TWRDownloadManager.m | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/TWRDownloadManager.m b/TWRDownloadManager.m index 5c45a24..e167cfd 100644 --- a/TWRDownloadManager.m +++ b/TWRDownloadManager.m @@ -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