You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 13, 2025. It is now read-only.
I have Found Following Syntax Errors in the module.
First One:
conversationsClient.listen().then(clientConnected, function (error) {
look at the above line. here, the function clientConnected is called without parenthesis
and the Right way is
conversationsClient.listen().then( clientConnected() , function (error) {
Second One:
conversationsClient.inviteToConversation(inviteTo, options).then(conversationStarted, function (error) {
Here, the function conversationStarted is called without parenthesis, also parameter conversation is not passed
and the Right way is
conversationsClient.inviteToConversation(inviteTo, options).then(conversationStarted(conversationParameter), function (error) {
and I don't know what to pass as conversationParameter. If anyone knows, Please let me know.