mod_muc_mam: Use higher precision timestamps

See also 781772c8b6d9
This commit is contained in:
Kim Alvefur 2023-01-21 17:24:45 +01:00
parent dbbde4a0f0
commit 27d63ff731

View file

@ -29,7 +29,7 @@ local get_room_from_jid = mod_muc.get_room_from_jid;
local is_stanza = st.is_stanza;
local tostring = tostring;
local time_now = os.time;
local time_now = require "util.time".now;
local m_min = math.min;
local timestamp, datestamp = import("util.datetime", "datetime", "date");
local default_max_items, max_max_items = 20, module:get_option_number("max_archive_query_results", 50);