Giter VIP home page Giter VIP logo

Comments (2)

Aakshara avatar Aakshara commented on June 18, 2024

The issue has been solved by doing nothing. But now i could see the send button and the snap &send button are disable.

from webrtc-web.

devworkerkim avatar devworkerkim commented on June 18, 2024

@Aakshara - I ran into the same problem here. Don't know if the symptoms are the same, but my console was outputting the following error:

Uncaught TypeError: Failed to construct 'RTCIceCandidate': sdpMid and sdpMLineIndex are both null.

The problem was some missing code in the main.js file that handles the 'candidate' type messages from the client.
@lukemcso made a great post with his solution on issue #102.

} else if (message.type === 'candidate') {
    peerConn.addIceCandidate(new RTCIceCandidate({
      sdpMLineIndex: message.label,
      sdpMid: message.id,
      candidate: message.candidate
    }));

Be sure to do a hard refresh in your browser (Chrome shortcut Ctrl+F5) so the changes are taken.

You can also compare the code from the previous step and notice the sdpMLineIndex line is missing in the step-06 main.js file.

from webrtc-web.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.