mirror of
https://github.com/KOP-XIAO/QuantumultX.git
synced 2026-01-25 17:15:09 +00:00
type para
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
☑️ 资源解析器 ©𝐒𝐡𝐚𝐰𝐧 ⟦2020-11-10 11:09⟧
|
||||
☑️ 资源解析器 ©𝐒𝐡𝐚𝐰𝐧 ⟦2020-11-10 14:29⟧
|
||||
----------------------------------------------------------
|
||||
🛠 发现 𝐁𝐔𝐆 请反馈: @Shawn_KOP_bot
|
||||
⛳️ 关注 🆃🅶 相关频道: https://t.me/QuanX_API
|
||||
@@ -144,6 +144,7 @@ var Pcnt = para1.indexOf("cnt=") != -1 ? para1.split("cnt=")[1].split("&")[0] :
|
||||
var flow = "";
|
||||
var exptime = "";
|
||||
|
||||
var typeU = para1.indexOf("type=") != -1 ? para1.split("type=")[1].split("&")[0] : "";
|
||||
var type0 = Type_Check(content0); // 类型判断
|
||||
//$notify(type0,"hh",content0)
|
||||
|
||||
@@ -319,7 +320,7 @@ function Type_Check(subs) {
|
||||
type = "rewrite" //Quantumult X 类型 rewrite
|
||||
} else if (RuleK.some(RuleCheck) && subs.indexOf(html) == -1 && subs.indexOf("[Proxy]") == -1 && subs.indexOf("[server_local]") == -1) {
|
||||
type = "Rule";
|
||||
} else if (DomainK.some(RuleCheck) && subs.indexOf("[Proxy]") == -1 ) {
|
||||
} else if ((DomainK.some(RuleCheck) || typeU == "domain-set") && subs.indexOf("[Proxy]") == -1 ) {
|
||||
type = "Rule";
|
||||
content0 = Domain2Rule(content0) // 转换 domain-set
|
||||
} else if (subsn.length >= 1 && SubK2.some(NodeCheck) && subs.indexOf("[Proxy]") == -1 && subs.indexOf("[filter_local]") == -1) { //未b64加密的多行URI 组合订阅
|
||||
|
||||
Reference in New Issue
Block a user