Use valid uuid as a fallback in calling

This commit is contained in:
Fedor Indutny 2022-03-14 15:14:14 -07:00 committed by GitHub
parent c28971ee9e
commit f7b71eecee
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,