Update to RingRTC v2.32.1
This commit is contained in:
parent
3b687ee68d
commit
88df942029
3 changed files with 13 additions and 5 deletions
|
@ -825,6 +825,9 @@ export class CallingClass {
|
|||
remoteDeviceStates,
|
||||
});
|
||||
},
|
||||
onLowBandwidthForVideo: (_groupCall, _recovered) => {
|
||||
// TODO: Implement handling of "low outgoing bandwidth for video" notification.
|
||||
},
|
||||
onPeekChanged: groupCall => {
|
||||
const localDeviceState = groupCall.getLocalDeviceState();
|
||||
const peekInfo = groupCall.getPeekInfo() ?? null;
|
||||
|
@ -2146,6 +2149,11 @@ export class CallingClass {
|
|||
isSharingScreen: Boolean(call.remoteSharingScreen),
|
||||
});
|
||||
};
|
||||
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
call.handleLowBandwidthForVideo = _recovered => {
|
||||
// TODO: Implement handling of "low outgoing bandwidth for video" notification.
|
||||
};
|
||||
}
|
||||
|
||||
private async handleLogMessage(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue