use proper sorting at OTG files

This commit is contained in:
tibbi 2019-03-29 11:17:03 +01:00
parent 9d045c30d8
commit dfbb2288d4
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
if (activity?.isDestroyed == false && activity?.isFinishing == false) {
val config = context!!.config
if (context!!.isPathOnOTG(path) && config.OTGTreeUri.isNotEmpty()) {
val getProperFileSize = config.sorting and SORT_BY_SIZE != 0
val getProperFileSize = context!!.config.getFolderSorting(currentPath) and SORT_BY_SIZE != 0
context!!.getOTGItems(path, config.shouldShowHidden, getProperFileSize) {
callback(path, getListItemsFromFileDirItems(it))
}