Skip to content

Conversation

@sf-tyler-jeong
Copy link
Collaborator

No description provided.

@sf-tyler-jeong sf-tyler-jeong merged commit bdc9a13 into main May 7, 2025
1 check passed
@sf-tyler-jeong sf-tyler-jeong deleted the v1.0.3 branch May 7, 2025 05:33
@280027552
Copy link

i want reply function in super group channel,please cut down, iOS and android can reply in super group channel

class SBUReplyManager {
SBUReplyManager._();

static final SBUReplyManager instance = SBUReplyManager.();

factory SBUReplyManager() => _instance;

SBUReplyType replyType = SBUReplyType.none;

bool isQuoteReplyAvailable(BaseChannel? channel) {
final isMessageThreadingEnabledInAppInfo = SendbirdChat.getAppInfo()
?.attributesInUse
.contains('enable_message_threading') ??
false;
if (replyType == SBUReplyType.quoteReply &&
isMessageThreadingEnabledInAppInfo &&
channel != null &&
channel is GroupChannel &&
!channel.isSuper) {
return true;
}
return false;
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants