mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 19:38:21 +00:00
Merge "Preventing null pointer crash when opening a folder" into ub-launcher3-burnaby
This commit is contained in:
@@ -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;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user