Fix OMEMO session creating loggin
Now prints the correct JID to the log when finding devices without sessions.
This commit is contained in:
parent
42fb9539f8
commit
58d213f291
|
@ -731,7 +731,7 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded {
|
||||||
XmppAxolotlSession session = new XmppAxolotlSession(account, axolotlStore, address, identityKey);
|
XmppAxolotlSession session = new XmppAxolotlSession(account, axolotlStore, address, identityKey);
|
||||||
sessions.put(address, session);
|
sessions.put(address, session);
|
||||||
} else {
|
} else {
|
||||||
Log.d(Config.LOGTAG, AxolotlService.getLogprefix(account) + "Found device " + account.getJid().toBareJid() + ":" + foreignId);
|
Log.d(Config.LOGTAG, AxolotlService.getLogprefix(account) + "Found device " + contactJid + ":" + foreignId);
|
||||||
if (fetchStatusMap.get(address) != FetchStatus.ERROR) {
|
if (fetchStatusMap.get(address) != FetchStatus.ERROR) {
|
||||||
addresses.add(address);
|
addresses.add(address);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue