Use valid uuid as a fallback in calling

Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2022-03-15 13:24:11 -07:00 committed by GitHub
parent 1646d62590
commit 34433f63e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -867,7 +867,7 @@ export class CallingClass {
'Calling.formatGroupCallPeekInfoForRedux: device had no user ID; using fallback UUID'
);
}
return '00000000-0000-0000-0000-000000000000';
return '00000000-0000-4000-8000-000000000000';
}),
creatorUuid: peekInfo.creator && bytesToUuid(peekInfo.creator),
eraId: peekInfo.eraId,
@ -911,7 +911,7 @@ export class CallingClass {
log.error(
'Calling.formatGroupCallForRedux: could not convert remote participant UUID Uint8Array to string; using fallback UUID'
);
uuid = '00000000-0000-0000-0000-000000000000';
uuid = '00000000-0000-4000-8000-000000000000';
}
return {
uuid,