add password to direct muc invite
This commit is contained in:
parent
f7d51b8890
commit
cd1c05a7c3
|
@ -183,6 +183,10 @@ public class MessageGenerator extends AbstractGenerator {
|
||||||
packet.setFrom(conversation.getAccount().getJid());
|
packet.setFrom(conversation.getAccount().getJid());
|
||||||
Element x = packet.addChild("x", "jabber:x:conference");
|
Element x = packet.addChild("x", "jabber:x:conference");
|
||||||
x.setAttribute("jid", conversation.getJid().toBareJid().toString());
|
x.setAttribute("jid", conversation.getJid().toBareJid().toString());
|
||||||
|
String password = conversation.getMucOptions().getPassword();
|
||||||
|
if (password != null) {
|
||||||
|
x.setAttribute("password",password);
|
||||||
|
}
|
||||||
return packet;
|
return packet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue