bugfix: use sendIqPacket method in service instead of invoking XmppConnection directly

This commit is contained in:
Daniel Gultsch 2015-07-19 14:25:30 +02:00
parent 086653b649
commit 37cbdb8b4e
1 changed files with 2 additions and 3 deletions

View File

@ -830,9 +830,8 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
} else {
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": fetching roster");
}
iqPacket.query(Xmlns.ROSTER).setAttribute("ver",
account.getRosterVersion());
account.getXmppConnection().sendIqPacket(iqPacket, mIqParser);
iqPacket.query(Xmlns.ROSTER).setAttribute("ver",account.getRosterVersion());
sendIqPacket(account,iqPacket,mIqParser);
}
public void fetchBookmarks(final Account account) {