update-12.16

This commit is contained in:
github-actions[bot]
2021-12-16 09:02:55 +08:00
parent a333d8171a
commit 774731060b
6 changed files with 46 additions and 15 deletions

View File

@@ -441,7 +441,7 @@ local function check_filer(result)
-- 检查是否存在过滤关键词
for i, v in pairs(filter_word) do
if result.alias:find(v) then
if tostring(result.alias):find(v) then
filter_result = true
end
end
@@ -449,7 +449,7 @@ local function check_filer(result)
-- 检查是否打开了保留关键词检查,并且进行过滤
if check_save == true then
for i, v in pairs(save_word) do
if result.alias:find(v) then
if tostring(result.alias):find(v) then
save_result = false
end
end