Add e164 in service address in SyncMessageProcessor.

This commit is contained in:
Alex Hart 2023-04-20 11:01:33 -03:00
parent 2c25a0494b
commit 358da730cd

View file

@ -226,7 +226,7 @@ object SyncMessageProcessor {
return if (message.message.hasGroupContext) {
Recipient.externalPossiblyMigratedGroup(GroupId.v2(message.message.groupV2.groupMasterKey))
} else {
Recipient.externalPush(ServiceId.parseOrThrow(message.destinationUuid))
Recipient.externalPush(SignalServiceAddress(ServiceId.parseOrThrow(message.destinationUuid), message.destinationE164))
}
}