Fixes a small error in pull request #332 where reblog and favourite notifications show your display name for the "reblogged by/favourited by" message instead of whomever did so.
This commit is contained in:
parent
a23cca7047
commit
e6bc28c831
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ public class NotificationsAdapter extends RecyclerView.Adapter {
|
|||
case FAVOURITE:
|
||||
case REBLOG: {
|
||||
StatusNotificationViewHolder holder = (StatusNotificationViewHolder) viewHolder;
|
||||
holder.setMessage(type, notification.getStatusViewData().getUserFullName(),
|
||||
holder.setMessage(type, notification.getAccount().getDisplayName(),
|
||||
notification.getStatusViewData());
|
||||
holder.setupButtons(notificationActionListener, notification.getAccount().id);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue