mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 11:00:38 +00:00
Add basic sealed sender support
This commit is contained in:
parent
9d836414f0
commit
209c613e43
2 changed files with 9 additions and 2 deletions
|
@ -19,6 +19,9 @@ class JsonMessageEnvelope {
|
|||
public JsonMessageEnvelope(SignalServiceEnvelope envelope, SignalServiceContent content) {
|
||||
SignalServiceAddress source = envelope.getSourceAddress();
|
||||
this.source = source.getNumber();
|
||||
if (this.source.equals("")) {
|
||||
this.source = content.getSender();
|
||||
}
|
||||
this.sourceDevice = envelope.getSourceDevice();
|
||||
this.relay = source.getRelay().isPresent() ? source.getRelay().get() : null;
|
||||
this.timestamp = envelope.getTimestamp();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue