diff --git a/app/src/main/java/fr/gouv/etalab/mastodon/drawers/NotificationsListAdapter.java b/app/src/main/java/fr/gouv/etalab/mastodon/drawers/NotificationsListAdapter.java index b2a1589b5..8d4679ecf 100644 --- a/app/src/main/java/fr/gouv/etalab/mastodon/drawers/NotificationsListAdapter.java +++ b/app/src/main/java/fr/gouv/etalab/mastodon/drawers/NotificationsListAdapter.java @@ -256,7 +256,7 @@ public class NotificationsListAdapter extends RecyclerView.Adapter implements On notification.getAccount().setDisplay_name(typeString); }else holder.notification_type.setText(notification.getAccount().getdisplayNameSpan(), TextView.BufferType.SPANNABLE); - notification.getAccount().makeEmojisAccount(context, NotificationsListAdapter.this, notification.getAccount()); + notification.getAccount().makeAccountNameEmoji(context, NotificationsListAdapter.this, notification.getAccount()); if( imgH != null) { holder.notification_type.setCompoundDrawablePadding((int)Helper.convertDpToPixel(5, context)); imgH.setBounds(0, 0, (int) (20 * iconSizePercent / 100 * scale + 0.5f), (int) (20 * iconSizePercent / 100 * scale + 0.5f));