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
we are developing chat application based on the demo app you provided, we have observed when multiple users are sending messages in same conversation, some messages are not visible in conversation while in Twilio console it is visible. when we refresh the app, all messages are visible.
we have observed below event is not getting fired for all messages.
client.on("messageAdded", async (message: Message) => {
console.log("EVENT FIRED AT LINE 250", message);
await upsertMessage(message, upsertMessages, updateUnreadMessages);
});
below are the Twilio libraries we are using in our application
The text was updated successfully, but these errors were encountered:
we are developing chat application based on the demo app you provided, we have observed when multiple users are sending messages in same conversation, some messages are not visible in conversation while in Twilio console it is visible. when we refresh the app, all messages are visible.
we have observed below event is not getting fired for all messages.
client.on("messageAdded", async (message: Message) => {
console.log("EVENT FIRED AT LINE 250", message);
await upsertMessage(message, upsertMessages, updateUnreadMessages);
below are the Twilio libraries we are using in our application
The text was updated successfully, but these errors were encountered: