Version 2.0.3 Fixed Match Scope Bug

This commit is contained in:
AnonymousUser
2021-06-12 15:19:39 +08:00
parent 37a907d6df
commit cf9f434ff8

View File

@@ -38,7 +38,7 @@ public class ExtractContent {
String scope = objects[4].toString(); String scope = objects[4].toString();
String engine = objects[5].toString(); String engine = objects[5].toString();
// 判断规则是否开启与作用域 // 判断规则是否开启与作用域
if (loaded && (scopeString.contains(scope) || scope.equals("any"))) { if (loaded && (scope.contains(scopeString) || scope.equals("any"))) {
switch (scope) { switch (scope) {
case "any": case "any":
case "request": case "request":