aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/webcam
diff options
context:
space:
mode:
authorMelissa Zhang <mzhang19096@gmail.com>2020-06-08 12:50:30 -0700
committerMelissa Zhang <mzhang19096@gmail.com>2020-06-08 12:50:30 -0700
commit8a5c91740f1a8bc4dca2e99bba1da3a1ed1f591b (patch)
tree65b571dc98638bd4a549ff06ea2cc453564b669d /src/client/views/webcam
parentbcb2e70a5cd4628dd2909279ec61c4c644e07c37 (diff)
parent3e7cc70f7588c738c34de1d087e1d53b9410d9fe (diff)
pull from master
Diffstat (limited to 'src/client/views/webcam')
-rw-r--r--src/client/views/webcam/WebCamLogic.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/views/webcam/WebCamLogic.js b/src/client/views/webcam/WebCamLogic.js
index a8a2f5fa4..5f6202bc8 100644
--- a/src/client/views/webcam/WebCamLogic.js
+++ b/src/client/views/webcam/WebCamLogic.js
@@ -1,8 +1,5 @@
'use strict';
import io from "socket.io-client";
-import {
- resolvedPorts
-} from "../Main";
var socket;
var isChannelReady = false;
@@ -32,7 +29,7 @@ export function initialize(roomName, handlerUI) {
room = roomName;
- socket = io.connect(`${window.location.protocol}//${window.location.hostname}:${resolvedPorts.socket}`);
+ socket = io.connect(`${window.location.protocol}//${window.location.hostname}:4321`);
if (room !== '') {
socket.emit('create or join', room);