From fd566bd0e29088d32964aebf0d7a3e87773603bd Mon Sep 17 00:00:00 2001 From: 174001602 <58964152+174001602@users.noreply.github.com> Date: Sun, 19 Jan 2020 21:18:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E9=81=97=E6=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修正遗漏 --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index bace106..e37ebd7 100644 --- a/init.lua +++ b/init.lua @@ -54,7 +54,7 @@ function white_url_check() local rule_str = string.sub(rule,1,2) local from, to, err = rulematch(REQ_URI,string.lower(rule),"jo") if rule_str == "\\." then - local wfrom, wto, werr = rulematch(REQ_URI,"%?","jo") + local wfrom, wto, werr = rulematch(unescape(REQ_URI),"%?","jo") if from and REQ_URI_LEN == to and wfrom == nil then return true end