Commit 1651423c authored by Christian Schudt's avatar Christian Schudt

Correct the target handler in MUC Admin UI (which should be IQAdminHandler)

(instead of IQOwnerHandler)
parent 8e178247
......@@ -117,7 +117,7 @@
item.addAttribute("jid", userJID);
try {
// Send the IQ packet that will modify the room's configuration
room.getIQOwnerHandler().handleIQ(iq, room.getRole());
room.getIQAdminHandler().handleIQ(iq, room.getRole());
// done, return
response.sendRedirect("muc-room-affiliations.jsp?deletesuccess=true&roomJID="+URLEncoder.encode(roomJID.toBareJID(), "UTF-8"));
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment