mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-03 10:45:38 +00:00
Fix NPEs
This commit is contained in:
parent
e00914c977
commit
288b416988
@ -113,6 +113,7 @@ public class ConversationListItem extends RelativeLayout
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void unbind() {
|
public void unbind() {
|
||||||
|
if (this.recipients != null)
|
||||||
this.recipients.removeListener(this);
|
this.recipients.removeListener(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,8 +111,10 @@ public class KeyExchangeProcessor {
|
|||||||
|
|
||||||
sessionRecord.save();
|
sessionRecord.save();
|
||||||
|
|
||||||
|
if (message.hasIdentityKey()) {
|
||||||
DatabaseFactory.getIdentityDatabase(context)
|
DatabaseFactory.getIdentityDatabase(context)
|
||||||
.saveIdentity(masterSecret, recipient, message.getIdentityKey());
|
.saveIdentity(masterSecret, recipient, message.getIdentityKey());
|
||||||
|
}
|
||||||
|
|
||||||
DecryptingQueue.scheduleRogueMessages(context, masterSecret, recipient);
|
DecryptingQueue.scheduleRogueMessages(context, masterSecret, recipient);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user