marinofaggiana 4 жил өмнө
parent
commit
6fccad51c3

+ 10 - 4
iOSClient/Viewer/NCViewerVideoAudio/NCKTVHTTPCache.swift

@@ -12,14 +12,13 @@ import KTVHTTPCache
 class NCKTVHTTPCache: NSObject {
     @objc static let shared: NCKTVHTTPCache = {
         let instance = NCKTVHTTPCache()
+        instance.setupHTTPCache()
         return instance
     }()
     
     func setAuth(user: String, password: String) {
         
-        guard let authData = (user + ":" + password).data(using: .utf8) else {
-            return
-        }
+        guard let authData = (user + ":" + password).data(using: .utf8) else { return }
         
         let authValue = "Basic " + authData.base64EncodedString(options: [])
         KTVHTTPCache.downloadSetAdditionalHeaders(["Authorization":authValue, "User-Agent":CCUtility.getUserAgent()])
@@ -63,7 +62,14 @@ class NCKTVHTTPCache: NSObject {
         }
     }
     
-    func setupHTTPCache() {
+    func startProxy() {
+        
+        if !KTVHTTPCache.proxyIsRunning() {
+            try? KTVHTTPCache.proxyStart()
+        }
+    }
+    
+    private func setupHTTPCache() {
         
         if KTVHTTPCache.proxyIsRunning() {
             KTVHTTPCache.proxyStop()

+ 1 - 1
iOSClient/Viewer/NCViewerVideoAudio/NCViewerVideoAudio.swift

@@ -33,7 +33,7 @@ class NCViewerVideoAudio: AVPlayerViewController {
 
         var videoURL: URL?
 
-        NCKTVHTTPCache.shared.setupHTTPCache()
+        NCKTVHTTPCache.shared.startProxy()
         NCKTVHTTPCache.shared.saveCache(metadata: metadata)
         
         if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {