Fix 1:1 calls

Co-authored-by: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com>
This commit is contained in:
Fedor Indutny
2025-02-11 11:10:41 -08:00
committed by GitHub
parent 4b093f612c
commit 9859383b1d
+2 -2
View File
@@ -51,10 +51,10 @@ export function callingMessageToProto(
}
: undefined,
iceUpdate: iceCandidates
? iceCandidates.map(candidate => {
? iceCandidates.map((candidate): Proto.CallMessage.IIceUpdate => {
return {
...candidate,
callId: Long.fromValue(candidate.callId),
id: Long.fromValue(candidate.callId),
opaque: bufferToProto(candidate.opaque),
};
})