diff --git a/V2rayU/V2raySubscribe.swift b/V2rayU/V2raySubscribe.swift index 83e4ed3..c5d6c05 100644 --- a/V2rayU/V2raySubscribe.swift +++ b/V2rayU/V2raySubscribe.swift @@ -247,7 +247,10 @@ class V2raySubSync: NSObject { public func dlFromUrl(url: String, subscribe: String) { logTip(title: "loading from : ", uri: "", informativeText: url + "\n\n") - Alamofire.request(url).responseString { response in + var request = URLRequest(url: URL(string: url)!) + request.cachePolicy = .reloadIgnoringCacheData + + Alamofire.request(request).responseString { response in switch (response.result) { case .success(_): if let data = response.result.value {