diff mod_saslauth_muc/mod_saslauth_muc.lua @ 3072:926db29176f5

mod_saslauth_muc: Use correct API for getting rooms
author Kim Alvefur <zash@zash.se>
date Wed, 30 May 2018 09:10:59 +0200
parents 249c5447fed1
children
line wrap: on
line diff
--- a/mod_saslauth_muc/mod_saslauth_muc.lua	Wed May 30 09:10:33 2018 +0200
+++ b/mod_saslauth_muc/mod_saslauth_muc.lua	Wed May 30 09:10:59 2018 +0200
@@ -34,7 +34,7 @@
 	_rooms[room_jid] = _rooms[room_jid] or {};
 	_rooms[room_jid][jid] = new_sasl(module.host, { plain = function(sasl, username, realm)
 		local muc = hosts[module.host].modules.muc;
-		local room = muc and muc.get_room_by_jid(room_jid);
+		local room = muc and muc.get_room_from_jid(room_jid);
 		local password = room and muc_password.get(room);
 		local ret = password and true or nil;
 		return password or "", ret;