mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +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) {
|
||||
final EntityFullJid jid = JidCreate.fullFrom(multiUserChat.getRoom(), nickname);
|
||||
final EntityFullJid jid = JidCreate.entityFullFrom(multiUserChat.getRoom(), nickname);
|
||||
joinPresence.setTo(jid);
|
||||
return joinPresence;
|
||||
}
|
||||
|
|
|
@ -1063,7 +1063,7 @@ public class MultiUserChat {
|
|||
if (!joined) {
|
||||
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"
|
||||
// field is in the form "roomName@service/nickname"
|
||||
// We don't have to signal the MUC support again
|
||||
|
|
|
@ -2,7 +2,7 @@ allprojects {
|
|||
ext {
|
||||
shortVersion = '4.4.0-alpha2'
|
||||
isSnapshot = true
|
||||
jxmppVersion = '0.6.2'
|
||||
jxmppVersion = '0.7.0-alpha1'
|
||||
miniDnsVersion = '0.3.0'
|
||||
smackMinAndroidSdk = 9
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue