Browse Source

Improve: add ifly ime api to http proxy black list

kr328 3 years ago
parent
commit
5149caf2b6

+ 6 - 1
service/src/main/java/com/github/kr328/clash/service/TunService.kt

@@ -238,6 +238,11 @@ class TunService : VpnService(), CoroutineScope by CoroutineScope(Dispatchers.De
             "172.31.*",
             "172.31.*",
             "192.168.*"
             "192.168.*"
         )
         )
-        private val HTTP_PROXY_BLACK_LIST: List<String> = listOf("*zhihu.com", "*zhimg.com", "*jd.com")
+        private val HTTP_PROXY_BLACK_LIST: List<String> = listOf(
+            "*zhihu.com",
+            "*zhimg.com",
+            "*jd.com",
+            "100ime-iat-api.xfyun.cn",
+        )
     }
     }
 }
 }