summaryrefslogtreecommitdiff
path: root/src/scripts/controllers/connection
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/controllers/connection')
-rw-r--r--src/scripts/controllers/connection/socket.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/controllers/connection/socket.ts b/src/scripts/controllers/connection/socket.ts
index c23495f1..91a0f9e4 100644
--- a/src/scripts/controllers/connection/socket.ts
+++ b/src/scripts/controllers/connection/socket.ts
@@ -15,7 +15,7 @@ export class SocketController {
this.callbacks = {};
this._cacheController = new CacheController();
- this._socket = io.connect('https://opendc.ewi.tudelft.nl:443');
+ this._socket = io.connect('SERVER_BASE_URL');
this._socket.on('connect', onConnect);
this._socket.on('response', (jsonResponse: string) => {