[mirotalksfu] - update dep, add missing

هذا الالتزام موجود في:
Miroslav Pejic
2025-03-04 13:36:47 +01:00
الأصل 4b3fa43b19
التزام f4e47b38f0
6 ملفات معدلة مع 75 إضافات و8 حذوفات

عرض الملف

@@ -3998,6 +3998,12 @@
this.safeEmit('icegatheringstatechange', iceGatheringState);
}
});
handler.on('@icecandidateerror', (event) => {
logger.warn(
`ICE candidate error [url:${event.url}, localAddress:${event.address}, localPort:${event.port}]: ${event.errorCode} "${event.errorText}"`,
);
this.safeEmit('icecandidateerror', event);
});
handler.on('@connectionstatechange', (connectionState) => {
if (connectionState === this._connectionState) {
return;
@@ -4470,6 +4476,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -5230,6 +5239,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -5845,6 +5857,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -6503,6 +6518,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -7207,6 +7225,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -8498,6 +8519,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -9277,6 +9301,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -10052,6 +10079,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -10689,6 +10719,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -11491,6 +11524,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -12154,6 +12190,9 @@
this._pc.addEventListener('icegatheringstatechange', () => {
this.emit('@icegatheringstatechange', this._pc.iceGatheringState);
});
this._pc.addEventListener('icecandidateerror', (event) => {
this.emit('@icecandidateerror', event);
});
if (this._pc.connectionState) {
this._pc.addEventListener('connectionstatechange', () => {
this.emit('@connectionstatechange', this._pc.connectionState);
@@ -14507,7 +14546,7 @@
/**
* Expose mediasoup-client version.
*/
exports.version = '3.8.2';
exports.version = '3.9.1';
/**
* Expose parseScalabilityMode() function.
*/