mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-13 22:00:30 +05:30
fix: wrong channel group shown as selected
This commit is contained in:
parent
7641024bc9
commit
a32e081011
@ -193,9 +193,6 @@ class SubscriptionsFragment : Fragment() {
|
||||
val groups = DatabaseHolder.Database.subscriptionGroupsDao().getAll()
|
||||
.sortedBy { it.index }
|
||||
channelGroupsModel.groups.postValue(groups)
|
||||
withContext(Dispatchers.Main) {
|
||||
initChannelGroups()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -241,12 +238,13 @@ class SubscriptionsFragment : Fragment() {
|
||||
setOnLongClickListener {
|
||||
// the index must be increased by one to skip the "all channels" group button
|
||||
playByGroup(index + 1)
|
||||
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
binding.channelGroups.addView(chip)
|
||||
|
||||
if (index + 1 == selectedFilterGroup) binding.channelGroups.check(chip.id)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user