mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Remove unnecessary parentheses
This commit is contained in:
parent
6821ccfd8f
commit
210f45ecaf
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class DownloadViewModel : ViewModel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun selectAllItems() {
|
fun selectAllItems() {
|
||||||
val items = (headerCards.value.orEmpty() + childCards.value.orEmpty())
|
val items = headerCards.value.orEmpty() + childCards.value.orEmpty()
|
||||||
updateSelectedItems { it.addAll(items.map { item -> item.data.id }) }
|
updateSelectedItems { it.addAll(items.map { item -> item.data.id }) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue