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 0dcc77c commit fc75b4cCopy full SHA for fc75b4c
app/src/main/kotlin/com/simplemobiletools/filemanager/helpers/RootHelpers.kt
@@ -104,7 +104,7 @@ class RootHelpers {
104
override fun commandCompleted(id: Int, exitcode: Int) {
105
files.forEachIndexed { index, fileDirItem ->
106
var line = lines[index]
107
- if (line != "0") {
+ if (line.isNotEmpty() && line != "0") {
108
line = line.substring(fileDirItem.path.length).trim()
109
val size = line.split(" ")[0]
110
if (size.areDigitsOnly()) {
0 commit comments