From 9859383b1d7fcf0fd71ae26d3fcbc69c8e5e5a32 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Tue, 11 Feb 2025 11:10:41 -0800 Subject: [PATCH] Fix 1:1 calls Co-authored-by: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com> --- ts/util/callingMessageToProto.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/util/callingMessageToProto.ts b/ts/util/callingMessageToProto.ts index 6b6b15e1b5..8f19e4f3af 100644 --- a/ts/util/callingMessageToProto.ts +++ b/ts/util/callingMessageToProto.ts @@ -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), }; })