Fix ACI null pointer

This commit is contained in:
AsamK 2021-11-08 21:06:27 +01:00
parent 510965589b
commit c60c8e998f
2 changed files with 2 additions and 2 deletions

View file

@ -845,7 +845,7 @@ public class SignalAccount implements Closeable {
}
public RecipientId getSelfRecipientId() {
return recipientStore.resolveRecipientTrusted(new RecipientAddress(aci.uuid(), username));
return recipientStore.resolveRecipientTrusted(new RecipientAddress(aci == null ? null : aci.uuid(), username));
}
public String getEncryptedDeviceName() {

View file

@ -139,7 +139,7 @@ public class RecipientStore implements RecipientResolver, ContactsStore, Profile
@Override
public RecipientId resolveRecipient(ACI aci) {
return resolveRecipient(new RecipientAddress(aci.uuid()), false);
return resolveRecipient(new RecipientAddress(aci == null ? null : aci.uuid()), false);
}
@Override