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

Commit 0e483b56 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6469672 from a3b0760d to rvc-release

Change-Id: Id5fbf3a54d8359f87dc094811905af530e5165de
parents 487b5a8b a3b0760d
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();