Fix service id conversion in import
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
This commit is contained in:
parent
ecea93e451
commit
3ab45e8d01
1 changed files with 3 additions and 1 deletions
|
@ -2452,7 +2452,9 @@ export class BackupImportStream extends Writable {
|
||||||
}
|
}
|
||||||
details.push({
|
details.push({
|
||||||
type: 'pending-add-one',
|
type: 'pending-add-one',
|
||||||
serviceId: fromAciObject(Aci.fromUuidBytes(inviteeServiceId)),
|
serviceId: fromServiceIdObject(
|
||||||
|
ServiceId.parseFromServiceIdBinary(Buffer.from(inviteeServiceId))
|
||||||
|
),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (update.groupUnknownInviteeUpdate) {
|
if (update.groupUnknownInviteeUpdate) {
|
||||||
|
|
Loading…
Reference in a new issue