fixup for pep omemo notification dedup

This commit is contained in:
Daniel Gultsch 2017-12-13 20:28:30 +01:00
parent 9a796df2a3
commit 782b8fb744
2 changed files with 7 additions and 5 deletions

View File

@ -391,11 +391,13 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded {
public void registerDevices(final Jid jid, @NonNull final Set<Integer> deviceIds) {
final int hash = deviceIds.hashCode();
final boolean me = jid.toBareJid().equals(account.getJid().toBareJid());
if (me && hash == this.lastDeviceListNotificationHash) {
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": ignoring duplicate own device id list");
return;
if (me) {
if (hash == this.lastDeviceListNotificationHash) {
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": ignoring duplicate own device id list");
return;
}
this.lastDeviceListNotificationHash = hash;
}
this.lastDeviceListNotificationHash = hash;
boolean needsPublishing = me && !deviceIds.contains(getOwnDeviceId());
if (me) {
deviceIds.remove(getOwnDeviceId());

View File

@ -1250,7 +1250,7 @@ public class XmppConnectionService extends Service {
if (!message.needsUploading()) {
String pgpBody = message.getEncryptedBody();
String decryptedBody = message.getBody();
message.setBody(pgpBody);
message.setBody(pgpBody); //TODO might throw NPE
message.setEncryption(Message.ENCRYPTION_PGP);
if (message.edited()) {
message.setBody(decryptedBody);