Questions tagged [sendbird-syncmanager]
4 questions
2
votes
0 answers
Sendbird: Group channel not created properly
I am using SendBird javascript SDK for chat and trying to create a group channel through the following code:
export async function openOneToOneChannel(user1, user2) {
try {
if (!sb) {
await createSBClient(user1.id);
}
let params…

Yousaf Iqbal
- 71
- 6
2
votes
1 answer
SendBird: Search personal chat along with group chat
SendBird treats every channel as their GroupChannel. The 1:1 chat too is technically a GroupChannel with only two users (with isDistinct = true so it would return the personal chat when you attempt to create it again).
My question is, how do I…

Sunil Chauhan
- 2,074
- 1
- 15
- 33
1
vote
1 answer
Sendbird SyncManager channel pagination issue
I am using Sendbird for chat messages in an native iOS app. They have an add-on SyncManager. Which caches the channel list and messages locally on the phone for offline support.
I am trying to paginate the channel list using SyncManager's…

Sunil Chauhan
- 2,074
- 1
- 15
- 33
1
vote
1 answer
SendBird SyncManager: "recommended" way to clear the existing local database cache?
I am trying Sendbird for chat messages in an native iOS app. They have an add-on SyncManager. Which caches the channel list and messages locally on the phone for offline support.
My app lets users logout of the app. At this time, I want to clear…

Sunil Chauhan
- 2,074
- 1
- 15
- 33