Hi,
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.