adding a context check
This commit is contained in:
parent
9cc7cfc3d5
commit
44755a82f2
|
@ -312,6 +312,10 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
|
||||||
|
|
||||||
private fun searchFiles(text: String, path: String): ArrayList<ListItem> {
|
private fun searchFiles(text: String, path: String): ArrayList<ListItem> {
|
||||||
val files = ArrayList<ListItem>()
|
val files = ArrayList<ListItem>()
|
||||||
|
if (context == null) {
|
||||||
|
return files
|
||||||
|
}
|
||||||
|
|
||||||
val sorting = context!!.config.getFolderSorting(path)
|
val sorting = context!!.config.getFolderSorting(path)
|
||||||
FileDirItem.sorting = context!!.config.getFolderSorting(currentPath)
|
FileDirItem.sorting = context!!.config.getFolderSorting(currentPath)
|
||||||
val isSortingBySize = sorting and SORT_BY_SIZE != 0
|
val isSortingBySize = sorting and SORT_BY_SIZE != 0
|
||||||
|
|
Loading…
Reference in New Issue