Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 194c6ae

Browse files
committed
Fix an issue introduced by rebasing.
A new parameter was add for roomController.publish.
1 parent b4e5597 commit 194c6ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/agent/conference/conference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ var Conference = function (rpcClient, selfRpcId) {
602602
const isReadded = !!(streams[id] && !streams[id].isInConnecting);
603603
const pubArgs = fwdStream.toRoomCtrlPubArgs();
604604
log.debug('PubArgs:', JSON.stringify(pubArgs));
605-
if (info.type === 'webrtc') {
605+
if (info.type === 'webrtc' || info.type === 'quic') {
606606
const pubs = pubArgs.map(pubArg => new Promise((resolve, reject) => {
607607
roomController && roomController.publish(
608608
pubArg.owner, pubArg.id, pubArg.locality, {media:pubArg.media, data:pubArg.data}, pubArg.type, resolve, reject);

0 commit comments

Comments
 (0)