We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c531a5 + e805652 commit fccbd72Copy full SHA for fccbd72
1 file changed
app/src/main/java/com/owncloud/android/ui/adapter/GroupFolderListAdapter.kt
@@ -1,6 +1,7 @@
1
/*
2
* Nextcloud - Android Client
3
*
4
+ * SPDX-FileCopyrightText: 2025 Alper Ozturk <alper.ozturk@nextcloud.com>
5
* SPDX-FileCopyrightText: 2023 Tobias Kaminsky <tobias@kaminsky.me>
6
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH
7
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
@@ -27,7 +28,7 @@ class GroupFolderListAdapter(
27
28
private val groupFolderListInterface: GroupfolderListInterface,
29
private val isDarkMode: Boolean
30
) : RecyclerView.Adapter<RecyclerView.ViewHolder>() {
- lateinit var list: List<Groupfolder>
31
+ private var list: List<Groupfolder> = listOf()
32
33
fun setData(result: Map<String, Groupfolder>) {
34
list = result.values.sortedBy { it.mountPoint }
0 commit comments