I use the MaterialDrawer library by Mike Penz. (version 6.0.0)
My drawer contains an ExpandableBadgeDrawerItem (with ID=1) with a SecondaryDrawerItem (with ID=2).
Both have styles set up for them, and using .setBadge directly in the drawer builder (result) works perfectly for both of them.
However, when calling
result.updateBadge(1, new StringHolder("1"));
result.updateBadge(2, new StringHolder("1"));
only the ExpandableBadgeDrawerItem receives a badge.
My Question: Is this a bug or am I just missing something?