diff options
author | Christian Schneppe <christian@pix-art.de> | 2017-08-01 13:35:11 +0200 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2017-08-01 13:35:11 +0200 |
commit | 635b5d3341fe57680130c4d04f517709e61f05de (patch) | |
tree | 74e92ef9a6290ebfac6e264a056e927003b35fa3 /src/main/java/de/pixart/messenger | |
parent | 11148a4c8b7d4bc56bf35c53141c60cdf2c66b1e (diff) |
refresh omemo activity after failing to fetch keys due to lack of ids
Diffstat (limited to '')
-rw-r--r-- | src/main/java/de/pixart/messenger/crypto/axolotl/AxolotlService.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/de/pixart/messenger/crypto/axolotl/AxolotlService.java b/src/main/java/de/pixart/messenger/crypto/axolotl/AxolotlService.java index b54c003b2..697c0dec5 100644 --- a/src/main/java/de/pixart/messenger/crypto/axolotl/AxolotlService.java +++ b/src/main/java/de/pixart/messenger/crypto/axolotl/AxolotlService.java @@ -1081,6 +1081,7 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded { } } } else { + mXmppConnectionService.keyStatusUpdated(FetchStatus.ERROR); Log.w(Config.LOGTAG, AxolotlService.getLogprefix(account) + "Have no target devices in PEP!"); } } |