[mirotalksfu] - update dep. + fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2022-08-25 17:15:08 +02:00
الأصل 489a6ef7f6
التزام d2e1c28164
3 ملفات معدلة مع 9 إضافات و14 حذوفات

عرض الملف

@@ -3124,12 +3124,12 @@ class RoomClient {
switch (action) {
case 'eject':
let ejectConfirmed = false;
let whoEject = data.broadcast ? 'All participants' : 'current participant';
let whoEject = data.broadcast ? 'All participants except yourself?' : 'current participant?';
Swal.fire({
background: swalBackground,
position: 'center',
imageUrl: data.broadcast ? image.users : image.user,
title: 'Eject ' + whoEject + ' excpect yourself?',
title: 'Eject ' + whoEject,
showDenyButton: true,
confirmButtonText: `Yes`,
denyButtonText: `No`,
@@ -3167,15 +3167,12 @@ class RoomClient {
case 'mute':
case 'hide':
let muteHideConfirmed = false;
let whoMuteHide = data.broadcast ? 'everyone' : 'current participant';
let whoMuteHide = data.broadcast ? 'everyone except yourself?' : 'current participant?';
Swal.fire({
background: swalBackground,
position: 'center',
imageUrl: action == 'mute' ? image.mute : image.hide,
title:
action == 'mute'
? 'Mute ' + whoMuteHide + ' excpect yourself?'
: 'Hide ' + whoMuteHide + ' except yourself?',
title: action == 'mute' ? 'Mute ' + whoMuteHide : 'Hide ' + whoMuteHide,
text:
action == 'mute'
? "Once muted, you won't be able to unmute them, but they can unmute themselves at any time."

عرض الملف

@@ -3952,11 +3952,9 @@
logger.debug('replaceTrack() | same track, ignored');
return;
}
if (!this._zeroRtpOnPause || !this._paused) {
await new Promise((resolve, reject) => {
this.safeEmit('@replacetrack', track, resolve, reject);
});
}
await new Promise((resolve, reject) => {
this.safeEmit('@replacetrack', track, resolve, reject);
});
// Destroy the previous track.
this._destroyTrack();
// Set the new track.
@@ -11753,7 +11751,7 @@
/**
* Expose mediasoup-client version.
*/
exports.version = '3.6.56';
exports.version = '3.6.57';
/**
* Expose parseScalabilityMode() function.
*/