Custom labels
This commit is contained in:
@@ -25,7 +25,7 @@ internal class GDriveFileProvider(
|
||||
viewUri = it.viewUri,
|
||||
metaData = getMetadata(it.metadata)
|
||||
)
|
||||
}.sorted()
|
||||
}
|
||||
}
|
||||
|
||||
private fun getMetadata(file: DriveFileMeta): List<Pair<Int, String>> {
|
||||
|
||||
@@ -61,6 +61,6 @@ internal class LocalFileProvider(
|
||||
results.add(file)
|
||||
}
|
||||
cursor.close()
|
||||
return@withContext results.sortedBy { it }
|
||||
return@withContext results
|
||||
}
|
||||
}
|
||||
@@ -27,7 +27,7 @@ internal class OneDriveFileProvider(
|
||||
webUrl = driveItem.webUrl
|
||||
)
|
||||
}
|
||||
return files.sorted()
|
||||
return files
|
||||
}
|
||||
|
||||
private fun getMetaData(driveItem: DriveItem): List<Pair<Int, String>> {
|
||||
|
||||
Reference in New Issue
Block a user