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

Commit 64704663 authored by Sunny Goyal's avatar Sunny Goyal Committed by Android Git Automerger
Browse files

am 606726ba: Merge "Preventing null pointer crash when opening a folder" into ub-launcher3-burnaby

* commit '606726ba':
  Preventing null pointer crash when opening a folder
parents f96b1ad2 606726ba
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;
            }
        });
    }