Skiminock
Skiminock

Reputation: 149

Sendbird error. Command received no ack

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

Upvotes: 1

Views: 1476

Answers (1)

Chandan Bisht
Chandan Bisht

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

Related Questions