Software /
code /
prosody
Changeset
10033:ca8333d1a7fe
mod_storage_sql: Ignore shadowed error variable [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 28 May 2019 00:56:30 +0200 |
parents | 10032:de5ab807e438 |
children | 10034:4fca92d60040 |
files | plugins/mod_storage_sql.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_sql.lua Tue May 28 00:47:50 2019 +0200 +++ b/plugins/mod_storage_sql.lua Tue May 28 00:56:30 2019 +0200 @@ -153,7 +153,7 @@ local archive_item_limit = module:get_option_number("storage_archive_item_limit"); local archive_item_count_cache = cache.new(module:get_option("storage_archive_item_limit_cache_size", 1000)); --- luacheck: ignore 512 431/user 431/store +-- luacheck: ignore 512 431/user 431/store 431/err local map_store = {}; map_store.__index = map_store; map_store.remove = {};