Vlad Lukhanin

Results 27 comments of Vlad Lukhanin
trafficstars

Hi, @mohannadsalem ! Could you check what is the `session` from `onCallListener`? The console output - "SESSION !!! [object Object]" isn't readable (try `console.log("SESSION !!!", JSON.stringify(session))` instead). Also check `console.log(navigator.mediaDevices.getUserMedia)`...

I don't recommend you to call `ConnectyCube.init(...)` more then once, please rewrite: ```javascript import { ConnectyCube } from "connectycube/dist/connectycube.min"; import { connectyCubeClient } from "../../shared/ConnectyCubeConfig"; const client = new ConnectyCube();...

> Hi @ajith-ab, thanks for this very helpful package. > > I have successfully implemented it into my app so that I can share photos and do some manipulation to...

@Abdulrahmanh95 We suggest to use a [system message](https://developers.connectycube.com/js/messaging?id=system-messages) to send a signal via chat in real-time.

Hi, @huahengling ! Are you expecting to get read status in real time (`onReadStatusListener` should get the status)? Could you show logs on the moment of sending the status from...

try on the server side: ```javascript ConnectyCube.chat.onMessageListener = (userId, message) => { /* * Some your code here... */ const params = { messageId: message.id, userId: userId, // current message...

Thanks for ConnectyCube's log. As I see you send read status to self messages: ```xml [Chat] SENT: 60110656ca8bf470b0aabe34 ``` Perhaps, I have misunderstood, but you don't need read self messages.

Hi, @ahmadsaufiyuddin-roomie I have inform our BE team about the issue. We will inform you as soon as we add this feature on the server side.

@coderkube hello Could you describe the issue by steps? I was confused when trying to understand. - you have an existed dialog with a history on server side and you...

First of all - fix the request [GET https://api.connectycube.com/chat/Message/unread.json](https://developers.connectycube.com/js/messaging?id=unread-messages-count). You often ask server. Sometimes request contains [undefined] instead array with dialogs ids. Don't see a request to get messages in...