[Problem/Question]
I’m creating public group channels with accessCode by setting GroupChannelParams.accessCode. When I try to query Group Channel List and check the accessCodeRequired field, it always returns false… I feel like this is a critical issue and I hope it will be fixed soon.
Thank you…
// If problem, please fill out the below. If question, please delete.
[SDK Version]
sendbird_sdk: ^3.2.14
[Reproduction Steps]
// Create Group Channel with Access Code
GroupChannelParams params = GroupChannelParams();
params.isPublic = true;
params.accessCode = _codeController.text;
await GroupChannel.createChannel(params);
...
// Query Channel with GroupChannelListQuery
final list = PublicGroupChannelListQuery().loadNext();
// this always prints false...
for(final channel in list) {
print('${channel.name} ${channel.accessCodeRequired}');
}
[Current impact]
This is critical in our application and we need this issue to be fixed ASAP