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

Commit a75053f5 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Preventing null pointer crash when opening a folder

Bug: 23770713
Change-Id: I3ce82450358f1493f70639d594e1e3f391945437
parent 7412c3cb
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;
            }
        });
    }