diff options
author | Andreas Straub <andy@strb.org> | 2015-12-31 15:48:43 +0100 |
---|---|---|
committer | Andreas Straub <andy@strb.org> | 2015-12-31 15:48:43 +0100 |
commit | 58d213f291062aaa81e13e55b7661e11eb3e0612 (patch) | |
tree | 30222a0c9fca5fc9bbd0ef48544f21ac7ec471ea /src/main/java/eu | |
parent | 42fb9539f82252b86b62622eef2266826714637d (diff) |
Fix OMEMO session creating loggin
Now prints the correct JID to the log when finding devices without
sessions.
Diffstat (limited to 'src/main/java/eu')
-rw-r--r-- | src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java b/src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java index 31b23e3c..c8253dd4 100644 --- a/src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java +++ b/src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java @@ -731,7 +731,7 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded { XmppAxolotlSession session = new XmppAxolotlSession(account, axolotlStore, address, identityKey); sessions.put(address, session); } 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) { addresses.add(address); } else { |