mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Fix ACI null pointer
This commit is contained in:
parent
510965589b
commit
c60c8e998f
2 changed files with 2 additions and 2 deletions
|
@ -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() {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue