diff options
author | Kim Alvefur <zash@zash.se> | 2022-06-14 22:06:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-06-14 22:06:21 +0200 |
commit | 7215ba25ff882523d2c1d7b8c8168b218dd38ff9 (patch) | |
tree | 0d8ac3d635845be69120d9d982e91ab779136ab8 /plugins | |
parent | 9efbb2d015aef48737ebd9dd39b830bbecff002f (diff) | |
download | prosody-7215ba25ff882523d2c1d7b8c8168b218dd38ff9.tar.gz prosody-7215ba25ff882523d2c1d7b8c8168b218dd38ff9.zip |
mod_mam: Silence luacheck (yay warnings in CI but not locally)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 229cdfb3..083ae90d 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -53,7 +53,7 @@ if not archive.find then end local use_total = module:get_option_boolean("mam_include_total", true); -function schedule_cleanup(_username, _date) +function schedule_cleanup(_username, _date) -- luacheck: ignore 212 -- Called to make a note of which users have messages on which days, which in -- turn is used to optimize the message expiry routine. -- |