Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27fe3b38 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6473494 from 8793ab00 to sc-d1-release

Change-Id: I94fbce4f806ee1009ddc294270fe620b40f3aa8d
parents 4fbd92af 8793ab00
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ public class FilteringCursorWrapper extends AbstractCursor {
        cursor.moveToPosition(-1);
        while (cursor.moveToNext() && mCount < count) {
            final String name = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
            if (!showHiddenFiles && name.startsWith(".")) {
            if (!showHiddenFiles && name != null && name.startsWith(".")) {
                continue;
            }
            mPosition[mCount++] = cursor.getPosition();