version:1.6.0317

bugfixes:修复网络黑白名单报错
add:增加设置菜单管控,增加中性桌面包名
This commit is contained in:
2026-03-18 11:55:44 +08:00
parent b8a5454a0d
commit 2029f7020f
8 changed files with 108 additions and 83 deletions

View File

@@ -56,6 +56,9 @@ public class URLUtils {
}
whiteIPList.removeIf(TextUtils::isEmpty);
Log.e(TAG, "getBrowserWhiteList: " + "oldwhiteList is : " + oldwhiteList);
if (TextUtils.isEmpty(oldwhiteList)) {
return;
}
HashSet<String> URLList = new HashSet<>(Arrays.asList(oldwhiteList.trim().split(",")));
URLList.removeIf(TextUtils::isEmpty);
if (URLList.size() == 0 && whiteIPList.size() == 0) {