mod_muc_mam: Skip fetching history if built-in recent history is enough

This commit is contained in:
Kim Alvefur 2018-04-27 15:26:29 +02:00
parent ee8969e246
commit d37e36dce4

View file

@ -254,6 +254,10 @@ module:hook("muc-get-history", function (event)
maxstanzas = get_historylength(room);
end
if room._history and #room._history >= maxstanzas then
return -- It can deal with this itself
end
-- Load all the data!
local query = {
limit = maxstanzas;