Software /
code /
prosody
Changeset
12854:73db76cc6472
MUC: Add note about non-existant room method
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 20 Jan 2023 19:47:00 +0100 |
parents | 12853:e1a71e83d430 |
children | 12855:3306807c0619 |
files | plugins/muc/mod_muc.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/mod_muc.lua Fri Jan 20 18:19:34 2023 +0100 +++ b/plugins/muc/mod_muc.lua Fri Jan 20 19:47:00 2023 +0100 @@ -89,7 +89,7 @@ local presence_broadcast = module:require "muc/presence_broadcast"; room_mt.get_presence_broadcast = presence_broadcast.get; room_mt.set_presence_broadcast = presence_broadcast.set; -room_mt.get_valid_broadcast_roles = presence_broadcast.get_valid_broadcast_roles; +room_mt.get_valid_broadcast_roles = presence_broadcast.get_valid_broadcast_roles; -- FIXME doesn't exist in the library local occupant_id = module:require "muc/occupant_id"; room_mt.get_salt = occupant_id.get_room_salt;