-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Listeners doesn't seems to works #451
Comments
Good day. The part of your code looks logical. But have you seen JS Chat Example? We have implemented a lot of requested listeners. |
Yes I have seen this but for me it is not working. For example the onMessageListener is not firing when I get a new message from an other user |
Hello, When I try to join a dialog I have an error code 403 with the message unknown issue. I'm joining the dialog like that: `try {
|
Hello,
I'm facing an issue using the javascript sdk.
Here is the code :
`
const useChatEvents = () => {
const dispatch = useAppDispatch();
const isConnected = useAppSelector(messagingSelector.selectIsConnected);
useEffect(() => {
const onDisconnectedListener = () => {
dispatch(messagingActions.setIsConnected(false));
console.log('Disconnected listener');
};
}, [isConnected]);
};
`
I'm connected and have initialized quickblox, I can get dialogs, dialog messages, send message,.....
I don't receive any response from the listeners apart from QB.chat.onDisconnectedListener.
Is there any solution or some configuration that I'm missing ?
The text was updated successfully, but these errors were encountered: