Bump jxmpp to 0.7.0-alpha1

This commit is contained in:
Florian Schmaus 2018-08-02 14:37:59 +02:00
parent 9bb724d65d
commit 50385be964
3 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ public final class MucEnterConfiguration {
} }
Presence getJoinPresence(MultiUserChat multiUserChat) { Presence getJoinPresence(MultiUserChat multiUserChat) {
final EntityFullJid jid = JidCreate.fullFrom(multiUserChat.getRoom(), nickname); final EntityFullJid jid = JidCreate.entityFullFrom(multiUserChat.getRoom(), nickname);
joinPresence.setTo(jid); joinPresence.setTo(jid);
return joinPresence; return joinPresence;
} }

View File

@ -1063,7 +1063,7 @@ public class MultiUserChat {
if (!joined) { if (!joined) {
throw new MucNotJoinedException(this); throw new MucNotJoinedException(this);
} }
final EntityFullJid jid = JidCreate.fullFrom(room, nickname); final EntityFullJid jid = JidCreate.entityFullFrom(room, nickname);
// We change the nickname by sending a presence packet where the "to" // We change the nickname by sending a presence packet where the "to"
// field is in the form "roomName@service/nickname" // field is in the form "roomName@service/nickname"
// We don't have to signal the MUC support again // We don't have to signal the MUC support again

View File

@ -2,7 +2,7 @@ allprojects {
ext { ext {
shortVersion = '4.4.0-alpha2' shortVersion = '4.4.0-alpha2'
isSnapshot = true isSnapshot = true
jxmppVersion = '0.6.2' jxmppVersion = '0.7.0-alpha1'
miniDnsVersion = '0.3.0' miniDnsVersion = '0.3.0'
smackMinAndroidSdk = 9 smackMinAndroidSdk = 9
} }