mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-10 09:24:24 +01:00
Fix ACI null pointer
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user