Mercurial > prosody-modules
changeset 707:f987c7b79008
mod_mam: Fix typo
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 08 Jun 2012 21:02:41 +0200 |
parents | 5c2b96c4dde6 |
children | d9a4e2f11b07 |
files | mod_mam/mod_mam.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_mam/mod_mam.lua Fri Jun 08 21:01:44 2012 +0200 +++ b/mod_mam/mod_mam.lua Fri Jun 08 21:02:41 2012 +0200 @@ -21,7 +21,7 @@ local tostring = tostring; local time_now = os.time; -local m_min = math.min;, +local m_min = math.min; local timestamp, timestamp_parse = require "util.datetime".datetime, require "util.datetime".parse; local uuid = require "util.uuid".generate; local default_max_items, max_max_items = 20, module:get_option_number("max_archive_query_results", 50);