Skip to content

Commit 5ed8b18

Browse files
authored
minor style update
1 parent 4bcc181 commit 5ed8b18

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/RecentsFragment.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,9 @@ class RecentsFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
142142
if (cursor.moveToFirst()) {
143143
do {
144144
val path = cursor.getStringValue(FileColumns.DATA)
145-
146-
if (File(path).isDirectory) continue
145+
if (File(path).isDirectory) {
146+
continue
147+
}
147148

148149
val name = cursor.getStringValue(FileColumns.DISPLAY_NAME) ?: path.getFilenameFromPath()
149150
val size = cursor.getLongValue(FileColumns.SIZE)

0 commit comments

Comments
 (0)