mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-26 20:55:10 +00:00
Update to RingRTC v2.53.0
This commit is contained in:
committed by
Greyson Parrelli
parent
6b6980811b
commit
a9475ef153
@@ -63,6 +63,7 @@ class CallLinkPreJoinActionProcessor(
|
||||
SignalStore.internal.groupCallingServer,
|
||||
callLinkAuthCredentialPresentation.serialize(),
|
||||
callLinkRootKey,
|
||||
null,
|
||||
callLink.credentials.adminPassBytes,
|
||||
ByteArray(0),
|
||||
AUDIO_LEVELS_INTERVAL,
|
||||
|
||||
@@ -417,7 +417,7 @@ public final class SignalCallManager implements CallManager.Observer, GroupCall.
|
||||
CallLinkSecretParams.deriveFromRootKey(callLinkRootKey.getKeyBytes())
|
||||
);
|
||||
|
||||
callManager.peekCallLinkCall(SignalStore.internal().getGroupCallingServer(), callLinkAuthCredentialPresentation.serialize(), callLinkRootKey, peekInfo -> {
|
||||
callManager.peekCallLinkCall(SignalStore.internal().getGroupCallingServer(), callLinkAuthCredentialPresentation.serialize(), callLinkRootKey, null, peekInfo -> {
|
||||
PeekInfo info = peekInfo.getValue();
|
||||
if (info == null) {
|
||||
Log.w(TAG, "Failed to get peek info: " + peekInfo.getStatus());
|
||||
|
||||
@@ -141,7 +141,8 @@ class SignalCallLinkManager(
|
||||
callManager.readCallLink(
|
||||
SignalStore.internal.groupCallingServer,
|
||||
requestCallLinkAuthCredentialPresentation(credentials.linkKeyBytes).serialize(),
|
||||
CallLinkRootKey(credentials.linkKeyBytes)
|
||||
CallLinkRootKey(credentials.linkKeyBytes),
|
||||
null
|
||||
) {
|
||||
if (it.isSuccess) {
|
||||
emitter.onSuccess(ReadCallLinkResult.Success(it.value!!.toAppState()))
|
||||
@@ -168,6 +169,7 @@ class SignalCallLinkManager(
|
||||
SignalStore.internal.groupCallingServer,
|
||||
credentialPresentation.serialize(),
|
||||
CallLinkRootKey(credentials.linkKeyBytes),
|
||||
null,
|
||||
credentials.adminPassBytes,
|
||||
name
|
||||
) { result ->
|
||||
@@ -195,6 +197,7 @@ class SignalCallLinkManager(
|
||||
SignalStore.internal.groupCallingServer,
|
||||
credentialPresentation.serialize(),
|
||||
CallLinkRootKey(credentials.linkKeyBytes),
|
||||
null,
|
||||
credentials.adminPassBytes,
|
||||
restrictions
|
||||
) { result ->
|
||||
@@ -221,6 +224,7 @@ class SignalCallLinkManager(
|
||||
SignalStore.internal.groupCallingServer,
|
||||
credentialPresentation.serialize(),
|
||||
CallLinkRootKey(credentials.linkKeyBytes),
|
||||
null,
|
||||
credentials.adminPassBytes
|
||||
) { result ->
|
||||
if (result.isSuccess && result.value == true) {
|
||||
|
||||
Reference in New Issue
Block a user