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

Commit 672c0fe

Browse files
committed
Fix ESLint warnings.
1 parent de14d1c commit 672c0fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sdk/conference/client.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export const ConferenceClient = function(config, signalingImpl) {
146146
if (channels.has(data.id)) {
147147
channels.get(data.id).onMessage(notification, data);
148148
} else if (quicTransportChannel && quicTransportChannel
149-
.hasContentSessionId(data.id)) {
149+
.hasContentSessionId(data.id)) {
150150
quicTransportChannel.onMessage(notification, data);
151151
} else {
152152
Logger.warning('Cannot find a channel for incoming data.');
@@ -307,9 +307,9 @@ export const ConferenceClient = function(config, signalingImpl) {
307307
}
308308
const dataSourceInfo = streamInfo.data;
309309
const stream = new StreamModule.RemoteStream(streamInfo.id,
310-
streamInfo.info.owner, undefined, new StreamModule.StreamSourceInfo(
311-
audioSourceInfo, videoSourceInfo, dataSourceInfo), streamInfo.info
312-
.attributes);
310+
streamInfo.info.owner, undefined, new StreamModule.StreamSourceInfo(
311+
audioSourceInfo, videoSourceInfo, dataSourceInfo), streamInfo.info
312+
.attributes);
313313
stream.settings = StreamUtilsModule.convertToPublicationSettings(
314314
streamInfo.media);
315315
stream.extraCapabilities = StreamUtilsModule

0 commit comments

Comments
 (0)