mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_muc_mam: Skip fetching history if built-in recent history is enough
This commit is contained in:
parent
ee8969e246
commit
d37e36dce4
1 changed files with 4 additions and 0 deletions
|
@ -254,6 +254,10 @@ module:hook("muc-get-history", function (event)
|
||||||
maxstanzas = get_historylength(room);
|
maxstanzas = get_historylength(room);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if room._history and #room._history >= maxstanzas then
|
||||||
|
return -- It can deal with this itself
|
||||||
|
end
|
||||||
|
|
||||||
-- Load all the data!
|
-- Load all the data!
|
||||||
local query = {
|
local query = {
|
||||||
limit = maxstanzas;
|
limit = maxstanzas;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue