diff options
Diffstat (limited to 'lualib/lua_fuzzy.lua')
-rw-r--r-- | lualib/lua_fuzzy.lua | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lualib/lua_fuzzy.lua b/lualib/lua_fuzzy.lua index e18f466a8..ee5a84e62 100644 --- a/lualib/lua_fuzzy.lua +++ b/lualib/lua_fuzzy.lua @@ -55,10 +55,10 @@ local policy_schema = ts.shape{ min_length = ts.number + ts.string / tonumber, text_multiplier = ts.number, mime_types = ts.array_of(ts.string), - scan_archives = ts.bool, - short_text_direct_hash = ts.bool, - text_shingles = ts.bool, - skip_imagess = ts.bool, + scan_archives = ts.boolean, + short_text_direct_hash = ts.boolean, + text_shingles = ts.boolean, + skip_imagess = ts.boolean, } @@ -264,4 +264,8 @@ exports.check_mime_part = function(task, part, rule_id) return false,false end +exports.cleanup_rules = function() + rules = {} +end + return exports
\ No newline at end of file |