mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Add RecipientStore to resolve all identifiers to SignalServiceAddress
Should fix #290
This commit is contained in:
parent
d49d536c32
commit
320e126eeb
8 changed files with 174 additions and 16 deletions
|
@ -252,6 +252,9 @@ class Utils {
|
|||
} else {
|
||||
// Version 1: E164 user
|
||||
version = 1;
|
||||
if (!ownAddress.getNumber().isPresent() || !theirAddress.getNumber().isPresent()) {
|
||||
return "INVALID ID";
|
||||
}
|
||||
ownId = ownAddress.getNumber().get().getBytes();
|
||||
theirId = theirAddress.getNumber().get().getBytes();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue