# HG changeset patch # User Kim Alvefur # Date 1376257174 -7200 # Node ID 01fa82074b620ed62d417b1da97eaefbe9c4e765 # Parent 28d4b58bcc3bc37c24c94ccd93411308b8e55d38 mod_mam: Remove unused table, it was moved to one of the libs diff -r 28d4b58bcc3b -r 01fa82074b62 mod_mam/mod_mam.lua --- a/mod_mam/mod_mam.lua Sun Aug 11 23:37:26 2013 +0200 +++ b/mod_mam/mod_mam.lua Sun Aug 11 23:39:34 2013 +0200 @@ -31,15 +31,6 @@ local timestamp, timestamp_parse = require "util.datetime".datetime, require "util.datetime".parse; local default_max_items, max_max_items = 20, module:get_option_number("max_archive_query_results", 50); local global_default_policy = module:get_option("default_archive_policy", false); --- TODO Should be possible to enforce it too - --- For translating preference names from string to boolean and back -local default_attrs = { - always = true, [true] = "always", - never = false, [false] = "never", - roster = "roster", -} - local archive_store = "archive2"; local archive = module:open_store(archive_store, "archive");