diff --git a/Sparkle/SPUDownloadDriver.m b/Sparkle/SPUDownloadDriver.m index 61b551d9e..3578b7048 100644 --- a/Sparkle/SPUDownloadDriver.m +++ b/Sparkle/SPUDownloadDriver.m @@ -112,7 +112,8 @@ - (instancetype)initWithRequestURL:(NSURL *)requestURL host:(SUHost *)host userA _delegate = delegate; _inBackground = background; - NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:requestURL cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:30.0]; + NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:requestURL]; + request.cachePolicy = NSURLRequestReloadIgnoringLocalCacheData; if (userAgent != nil) { [request setValue:(NSString * _Nonnull)userAgent forHTTPHeaderField:@"User-Agent"];