store jid if it was changed during bind

This commit is contained in:
Daniel Gultsch 2016-09-14 12:26:38 +02:00
parent 7b52e6984c
commit 4359afacb4
2 changed files with 8 additions and 3 deletions

View File

@ -277,8 +277,10 @@ public class Account extends AbstractEntity {
return jid.getLocalpart();
}
public void setJid(final Jid jid) {
this.jid = jid;
public boolean setJid(final Jid next) {
final Jid prev = this.jid != null ? this.jid.toBareJid() : null;
this.jid = next;
return prev == null || (next != null && !prev.equals(next.toBareJid()));
}
public Jid getServer() {

View File

@ -981,7 +981,10 @@ public class XmppConnection implements Runnable {
final Element jid = bind.findChild("jid");
if (jid != null && jid.getContent() != null) {
try {
account.setJid(Jid.fromString(jid.getContent()));
if (account.setJid(Jid.fromString(jid.getContent()))) {
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": bare jid changed during bind. updating database");
mXmppConnectionService.databaseBackend.updateAccount(account);
}
if (streamFeatures.hasChild("session")
&& !streamFeatures.findChild("session").hasChild("optional")) {
sendStartSession();