Sendbird error. Command received no ack

1.3k Views Asked by At

I got Command received no ack. error after calling sendUserMessage function. Does anybody know the possible reason?

1

There are 1 best solutions below

1
On

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');
    };