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.
1 parent 07b75a5 commit 861f9ffCopy full SHA for 861f9ff
app/src/main/kotlin/com/simplemobiletools/filemanager/helpers/RootHelpers.kt
@@ -103,9 +103,9 @@ class RootHelpers {
103
104
override fun commandCompleted(id: Int, exitcode: Int) {
105
files.forEachIndexed { index, fileDirItem ->
106
- val childrenCount = lines[index]
107
- if (childrenCount.areDigitsOnly()) {
108
- fileDirItem.size = childrenCount.toLong()
+ val size = lines[index]
+ if (size.areDigitsOnly()) {
+ fileDirItem.size = size.toLong()
109
}
110
111
callback(path, files)
0 commit comments