Update to RingRTC v2.36.0

This commit is contained in:
Jim Gustafson 2024-01-09 15:36:10 -08:00 committed by Scott Nonnenberg
parent 038194c946
commit 861f35aa53
5 changed files with 13 additions and 40 deletions

View file

@ -13,10 +13,8 @@ export function callingMessageToProto(
offer,
answer,
iceCandidates,
legacyHangup,
busy,
hangup,
supportsMultiRing,
destinationDeviceId,
opaque,
}: CallingMessage,
@ -61,13 +59,6 @@ export function callingMessageToProto(
};
})
: undefined,
legacyHangup: legacyHangup
? {
...legacyHangup,
callId: Long.fromValue(legacyHangup.callId),
type: legacyHangup.type as number,
}
: undefined,
busy: busy
? {
...busy,
@ -81,7 +72,6 @@ export function callingMessageToProto(
type: hangup.type as number,
}
: undefined,
supportsMultiRing,
destinationDeviceId,
opaque: opaqueField,
};