modified lib-jitsi-meet dev repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JitsiConnectionErrors.js 547B

1234567891011121314151617181920
  1. /**
  2. * Enumeration with the errors for the connection.
  3. * @type {{string: string}}
  4. */
  5. var JitsiConnectionErrors = {
  6. /**
  7. * Indicates that a password is required in order to join the conference.
  8. */
  9. PASSWORD_REQUIRED: "connection.passwordRequired",
  10. /**
  11. * Indicates that a connection error occurred when trying to join a conference.
  12. */
  13. CONNECTION_ERROR: "connection.connectionError",
  14. /**
  15. * Not specified errors.
  16. */
  17. OTHER_ERROR: "connection.otherError"
  18. };
  19. module.exports = JitsiConnectionErrors;