Hi all,
I’m using Android UIKit version 2.2.5 with Android 10, and I’m facing up with the following issue:
When I open a chat from ChannelList
I can disable notifications correctly:
But when I try to open that chat directly, the notifications switch is incorrectly enabled:
More details:
- I have a
CustomChannelSettingsFragment
with:
override fun onMenuItemClicked(
view: View,
menu: ChannelSettingMenu,
data: GroupChannel
): Boolean {
when (menu) {
ChannelSettingMenu.MODERATIONS -> {}
ChannelSettingMenu.MEMBERS -> {
createCustomMemberListActivity(data.url)
return true
}
ChannelSettingMenu.NOTIFICATIONS -> {}
ChannelSettingMenu.LEAVE_CHANNEL -> {
leaveChannel(data.url)
return true
}
else -> {}
}
return false
}
- to create or open a chat directly, I use the following implementation:
val params = GroupChannelParams()
.setPublic(false)
.setDistinct(true)
.addUserIds(usersIds)
.setName(chatName)
createChannel(params) { groupChannel, createGroupChannelException ->
...
}
Do you have any advice?
Thank you.