# HG changeset patch # User Kim Alvefur # Date 1490275861 -3600 # Node ID 0f44d04d0d18e4b92f7599846ce4d0ad2dce22b9 # Parent 777d07e0cd73c9538395dcbcabe46ea1ba3b7670 mod_mam: Ignore long log lines [luacheck] diff -r 777d07e0cd73 -r 0f44d04d0d18 mod_mam/mod_mam.lua --- a/mod_mam/mod_mam.lua Thu Mar 23 09:19:52 2017 +0000 +++ b/mod_mam/mod_mam.lua Thu Mar 23 14:31:01 2017 +0100 @@ -44,6 +44,7 @@ local archive = assert(module:open_store(archive_store, "archive")); if archive.name == "null" or not archive.find then + -- luacheck: ignore 631 if not archive.find then module:log("debug", "Attempt to open archive storage returned a valid driver but it does not seem to implement the storage API"); module:log("debug", "mod_%s does not support archiving", archive._provided_by or archive.name and "storage_"..archive.name.."(?)" or "");