Merge "Fix NPE" into rvc-dev

This commit is contained in:
TreeHugger Robot
2020-06-03 00:55:29 +00:00
committed by Android (Google) Code Review

View File

@@ -285,7 +285,10 @@ class BubbleOverflowAdapter extends RecyclerView.Adapter<BubbleOverflowAdapter.V
}
});
ShortcutInfo info = b.getEntry().getRanking().getShortcutInfo();
// If the bubble was persisted, the entry is null but it should have shortcut info
ShortcutInfo info = b.getEntry() == null
? b.getShortcutInfo()
: b.getEntry().getRanking().getShortcutInfo();
if (info == null) {
Log.d(TAG, "ShortcutInfo required to bubble but none found for " + b);
} else {