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
}, [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:
When I try to join a dialog I have an error code 403 with the message unknown issue.
However I'm connected to the chat and can get dialogs and messages !
I think it is linked with the problem of listeners not firing.
Uh oh!
There was an error while loading. Please reload this page.
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: