Reputation: 149
I got Command received no ack.
error after calling sendUserMessage
function. Does anybody know the possible reason?
Upvotes: 1
Views: 1476
Reputation: 53
You can check the following solution which says this is related with method markAsRead https://community.sendbird.com/t/sendbirdexception-command-received-no-ack/1925/9 This was my solution for this issue
this.markAsRead = function () {
chatGroupChannel.markAsRead(this.markAsReadCallBack);
};
this.markAsReadCallBack = function(){
console.log('markAsReadCallBack exectuted');
};
Upvotes: 0