修正遗漏

修正遗漏
pull/6/head
174001602 2020-01-19 21:18:20 +08:00 committed by GitHub
parent 38521f794e
commit fd566bd0e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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