am 606726ba: Merge "Preventing null pointer crash when opening a folder" into ub-launcher3-burnaby
* commit '606726ba289583a67188d9448b220c2e3fae87d7': Preventing null pointer crash when opening a folder
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