mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
MUC: Skip adding to history when it's set to zero
Optimizes away all the processing on every message in case the end-result is zero history.
This commit is contained in:
parent
07ef92dbd8
commit
20d3403a84
1 changed files with 4 additions and 0 deletions
|
@ -173,6 +173,10 @@ end, 50); -- Before subject(20)
|
|||
-- add to history
|
||||
module:hook("muc-add-history", function(event)
|
||||
local room = event.room
|
||||
if get_historylength(room) == 0 then
|
||||
room._history = nil;
|
||||
return;
|
||||
end
|
||||
local history = room._history;
|
||||
if not history then history = {}; room._history = history; end
|
||||
local stanza = st.clone(event.stanza);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue