Remove unnecessary options

This commit is contained in:
problematicconsumer
2023-08-29 20:20:54 +03:30
parent e8eb55ac8d
commit 75fdffa116
4 changed files with 52 additions and 55 deletions

View File

@@ -27,7 +27,6 @@ class GroupsChannel(private val scope: CoroutineScope) : FlutterPlugin, CommandC
override fun updateGroups(groups: List<OutboundGroup>) {
MainActivity.instance.runOnUiThread {
val kGroups = groups.map { group -> KOutboundGroup.fromOutbound(group) }
Log.d(TAG, kGroups.toString())
groupsEvent?.success(gson.toJson(kGroups))
}
}