We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I use async function and await messageRoom.But I still can't correct my messages' order. Is there any way to solve this?
async function sendmultiple (robot, msg,msg2,msg3) { const roomID = roomSession.roomID; await robot.messageRoom(roomID , msg); await robot.messageRoom(roomID , msg2); await robot.messageRoom(roomID , msg3); }
The text was updated successfully, but these errors were encountered:
hi @PonnyZuo AFAIK the mattermost server does not guarantee order of messages if they are send in close proximity of each other
Sorry, something went wrong.
No branches or pull requests
I use async function and await messageRoom.But I still can't correct my messages' order. Is there any way to solve this?
The text was updated successfully, but these errors were encountered: