vani-meeting-server 1.3.5 → 1.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -183,6 +183,7 @@ class SFUEachRoomHandler extends BaseSFUWebsocket_1.BaseSFUWebsocket {
|
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
185
|
async onNewProducer(producer, participant) {
|
|
186
|
+
console.log("onNewProducer SFUEachRoomHandlerInterface");
|
|
186
187
|
if (producer && producer.closed === false) {
|
|
187
188
|
if (this.plainTransportForAudio && producer.kind === "audio") {
|
|
188
189
|
this.consumeProducerForPlainTransport(this.plainTransportForAudio, producer);
|
|
@@ -223,6 +223,7 @@ class SFUEachRoomUserHandler extends BaseSFUWebsocket_1.BaseSFUWebsocket {
|
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
async onNewProducer(producer) {
|
|
226
|
+
console.log("onNewProducer SFUEachRoomUserHandler");
|
|
226
227
|
if (this.roomHandlerDataSource) {
|
|
227
228
|
if (producer.closed === false) {
|
|
228
229
|
await this.roomHandlerDataSource.pipeToRoute(producer);
|