mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_muc/muc.lib: Don't add messages without a body (such as chat state notifications) to the room history (thanks louiz’, Link Mauve, poezio and all its users)
This commit is contained in:
parent
533a5899e3
commit
1ffb32ffca
1 changed files with 1 additions and 1 deletions
|
@ -892,7 +892,7 @@ function room_mt:handle_to_room(origin, stanza) -- presence changes and groupcha
|
|||
origin.send(st.error_reply(stanza, "auth", "forbidden"));
|
||||
end
|
||||
else
|
||||
self:broadcast_message(stanza, self:get_historylength() > 0);
|
||||
self:broadcast_message(stanza, self:get_historylength() > 0 and stanza:get_child("body"));
|
||||
end
|
||||
stanza.attr.from = from;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue