mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Bump jxmpp to 0.7.0-alpha1
This commit is contained in:
parent
9bb724d65d
commit
50385be964
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue