[mirotalk] - fix typo

This commit is contained in:
Miroslav Pejic
2022-05-17 15:38:22 +02:00
parent 553d78e2e2
commit 6ec6052f8d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ const Logger = require('./Logger');
const log = new Logger('server');
const isHttps = false; // must be the same on client.js
const port = 3000; // must be the same to client.js signalingServerPort
const port = process.env.PORT || 3000; // must be the same to client.js signalingServerPort
let io, server, host;
+1
View File
@@ -2551,6 +2551,7 @@ function attachSinkId(element, sinkId) {
/**
* Got Stream and append to local media
* @param {object} stream media stream audio - video
* @returns {object} media Devices Info
*/
function gotStream(stream) {
refreshMyStreamToPeers(stream, true);