[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2025-01-14 23:04:58 +01:00
الأصل fda8e5097f
التزام fc8bb91613

عرض الملف

@@ -1538,7 +1538,7 @@ class RoomClient {
// if screen sharing produce the tab audio + microphone
if (screen && stream.getAudioTracks()[0]) {
this.produceScreenAudio(stream);
await this.produceScreenAudio(stream);
}
if (!audio) {
@@ -2265,7 +2265,7 @@ class RoomClient {
console.log('[produceScreenAudio] - PRODUCER LABEL', this.producerLabel);
const sa = await this.handleProducer(producerSa.id, mediaType.audio, stream);
await this.handleProducer(producerSa.id, mediaType.audio, stream);
producerSa.on('trackended', () => {
this.closeProducer(mediaType.audioTab, 'trackended');
@@ -2330,6 +2330,8 @@ class RoomClient {
this.consumers.set(consumer.id, consumer);
await this.handleConsumer(consumer.id, type, stream, peer_name, peer_info);
// https://mediasoup.discourse.group/t/create-server-side-consumers-with-paused-true/244
try {
const response = await this.socket.request('resumeConsumer', { consumer_id: consumer.id, type });
@@ -2348,8 +2350,6 @@ class RoomClient {
this.removeConsumer(consumer.id, consumer.kind);
});
this.handleConsumer(consumer.id, type, stream, peer_name, peer_info);
if (kind === 'video' && isParticipantsListOpen) {
await getRoomParticipants();
}