diff options
Diffstat (limited to 'util/muc.lua')
-rw-r--r-- | util/muc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/muc.lua b/util/muc.lua index 2bb1311a..a9d32d8b 100644 --- a/util/muc.lua +++ b/util/muc.lua @@ -315,7 +315,7 @@ local function room_handle_to_room(self, origin, stanza) -- presence changes and local current_nick = self._jid_nick[stanza.attr.from]; if current_nick then stanza.attr.to = current_nick; - room_handle_to_occupant(origin, stanza); + room_handle_to_occupant(self, origin, stanza); stanza.attr.to = to; elseif type ~= "error" and type ~= "result" then origin.send(st.error_reply(stanza, "cancel", "service-unavailable")); |