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

Commit 606726ba authored by Sunny Goyal's avatar Sunny Goyal Committed by Android (Google) Code Review
Browse files

Merge "Preventing null pointer crash when opening a folder" into ub-launcher3-burnaby

parents 667d6888 a75053f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4089,7 +4089,7 @@ public class Workspace extends PagedView

            @Override
            public boolean evaluate(ItemInfo info, View v, View parent) {
                return info.id == id;
                return info != null && info.id == id;
            }
        });
    }