From 2ccf2e96c48d67038e2cbefc31db785eafdb4e1f Mon Sep 17 00:00:00 2001 From: Chigozirim Igweamaka Date: Mon, 10 Jun 2024 08:25:29 +0100 Subject: [PATCH] Connect to server on port 4443 --- client/src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/App.js b/client/src/App.js index bcf2e40..090223b 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -11,8 +11,8 @@ import "react-toastify/dist/ReactToastify.css"; import { MediaRecorder, register } from "extendable-media-recorder"; import { connect } from "extendable-media-recorder-wav-encoder"; -var socket = io("http://localhost:5000"); -// var socket = io("https://localport.online/"); +// var socket = io("http://localhost:5000"); +var socket = io("https://localport.online:4443/"); function App() { const [stream, setStream] = useState();