fixed omemo device list not getting annouced on empty list
This commit is contained in:
parent
1753dcac76
commit
e0ec6ad8b6
|
@ -392,7 +392,7 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded {
|
||||||
final int hash = deviceIds.hashCode();
|
final int hash = deviceIds.hashCode();
|
||||||
final boolean me = jid.toBareJid().equals(account.getJid().toBareJid());
|
final boolean me = jid.toBareJid().equals(account.getJid().toBareJid());
|
||||||
if (me) {
|
if (me) {
|
||||||
if (hash == this.lastDeviceListNotificationHash) {
|
if (hash != 0 && hash == this.lastDeviceListNotificationHash) {
|
||||||
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": ignoring duplicate own device id list");
|
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": ignoring duplicate own device id list");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue