Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1479 committed Dec 13, 2023
1 parent f58b392 commit 44eaebd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/main2.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const rootUrl = 'http://127.0.0.1:8090/';
const rootUrl = 'https://https://wscinemawebsite.azurewebsites.net/';

// Doesn't work on some PCs
// let socket = io();
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const app = require('./app.js');
const http = require('http');
const myServer = http.createServer(app);
const { Server } = require('socket.io');
const port = 8090;
const port = 8080;
const mySocket = new Server(myServer);

myServer.listen(port, () => {
Expand Down

0 comments on commit 44eaebd

Please sign in to comment.