huangxiaodong пре 8 месеци
родитељ
комит
74d3097ef5

+ 1 - 1
创维盒子/双子星云手机/Class/Set/uploadFile/customDownloadManager/customDownloadManager.m

@@ -453,7 +453,7 @@ totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend {
         }
     }
     
-    if(error && error.code == -1005 && !operation.isFile404Cancel){//网络中断
+    if(error && (error.code == -1005 || error.code == -1009) && !operation.isFile404Cancel){//网络中断
         HLog(@"reDownloadNetworkTaskBy");
         //延时几秒再次启动这个任务
         dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

+ 1 - 1
创维盒子/双子星云手机/NAS/recenFile/audioPlayDownloadManager.m

@@ -452,7 +452,7 @@ totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend {
         }
     }
     
-    if(error && error.code == -1005 && !operation.isFile404Cancel){//网络中断
+    if(error && (error.code == -1005 || error.code == -1009) && !operation.isFile404Cancel){//网络中断
         HLog(@"reDownloadNetworkTaskBy");
         //延时几秒再次启动这个任务
         dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{