Compare commits

..

No commits in common. "36d07c0e97a2f8fbf229f5e3a50dc3c202e47d19" and "1e47627c271760bb99c7f06067bb3cf7da30656a" have entirely different histories.

3 changed files with 1 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -442,7 +442,7 @@ class Room {
const secureProtocol = window.location.protocol === 'https:'
const protocol = secureProtocol ? 'wss' : 'ws'
const webSocketUrl = `${protocol}://${location.host}/ws`
const webSocketUrl = `${protocol}://${location.host}`
console.log('connecting to websocket', webSocketUrl)
this.webSocket = new WebSocket(webSocketUrl)
this.webSocket.onerror = () => showPopup('websocket-connect-failed')

View File

@ -17,7 +17,6 @@ function main(): void {
const webServer = http.createServer((req, res) => {
serveHandler(req, res, {
public: 'public',
unlisted: ['ws'],
})
})
@ -31,7 +30,6 @@ function main(): void {
const websocketServer = new websocket.Server({
server: webServer,
path: '/ws',
})
const broadcastServer = new Server()