mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_muc_mam: Save the MUC <x> on recorded join stanzas
This commit is contained in:
parent
28cfb73f59
commit
c44df11dd4
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ end);
|
|||
|
||||
if module:get_option_boolean("muc_log_presences", true) then
|
||||
module:hook("muc-occupant-joined", function (event)
|
||||
save_to_history(event.room, st.stanza("presence", { from = event.nick }));
|
||||
save_to_history(event.room, st.stanza("presence", { from = event.nick }):tag("x", { xmlns = "http://jabber.org/protocol/muc" }));
|
||||
end);
|
||||
module:hook("muc-occupant-left", function (event)
|
||||
save_to_history(event.room, st.stanza("presence", { type = "unavailable", from = event.nick }));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue