Video-Call-App-NodeJS
Video-Call-App-NodeJS copied to clipboard
Error data.room
First run is ok. On reload script stop working. (Ubuntu. Chrome)
if ( socket.adapter.rooms[data.room].length > 1 ) {
^
TypeError: Cannot read properties of undefined (reading 'length')
did you fix it???
no :(
Hello! If you upgraded the version of socket.io you need to replace that line of code
if ( socket.adapter.rooms.has(data.room) === true )
Pull request #68
Hey, but do you have any idea how to make the application run on private IPs or public IPs? It only runs on Localhost!
Hey, but do you have any idea how to make the application run on private IPs or public IPs? It only runs on Localhost!
This is due to a security restriction of the browsers, to access devices such as the camera and microphone. HTTPS and TLS/SSL certificates are required. If you want to run the application on a private IP segment, you could try to use self-signed certificates.
Example self-signed certificates: https://flaviocopes.com/express-https-self-signed-certificate/
Hey, but do you have any idea how to make the application run on private IPs or public IPs? It only runs on Localhost!
This is due to a security restriction of the browsers, to access devices such as the camera and microphone. HTTPS and TLS/SSL certificates are required. If you want to run the application on a private IP segment, you could try to use self-signed certificates.
Example self-signed certificates: https://flaviocopes.com/express-https-self-signed-certificate/
Hey..could you convert this source to https in app.js?