mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-01-14 18:07:42 +01:00
Use context access to sdCardPath
This commit is contained in:
parent
4cca280de7
commit
a0419ed02c
@ -324,7 +324,7 @@ class StorageFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
|
||||
private fun scanVolume(volumeName: String, root: File) {
|
||||
val paths = mutableListOf<String>()
|
||||
if (context.isPathOnSD(root.path)) {
|
||||
File(context.config.sdCardPath).walkBottomUp().forEach {
|
||||
File(context.sdCardPath).walkBottomUp().forEach {
|
||||
paths.add(it.path)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user