Fix issue #275
This commit is contained in:
parent
0a15ab2cf8
commit
3338e2881f
|
@ -204,7 +204,7 @@ public class NotificationAdapter extends RecyclerView.Adapter<RecyclerView.ViewH
|
||||||
}
|
}
|
||||||
title = String.format(Locale.getDefault(), "%s reacted with %s", notification.account.username, notification.emoji);
|
title = String.format(Locale.getDefault(), "%s reacted with %s", notification.account.username, notification.emoji);
|
||||||
MastodonHelper.loadPPMastodon(holderStatus.bindingNotification.status.avatar, notification.account);
|
MastodonHelper.loadPPMastodon(holderStatus.bindingNotification.status.avatar, notification.account);
|
||||||
holderStatus.bindingNotification.status.avatar.setOnClickListener(v -> {
|
holderStatus.bindingNotification.status.statusUserInfo.setOnClickListener(v -> {
|
||||||
Intent intent = new Intent(context, ProfileActivity.class);
|
Intent intent = new Intent(context, ProfileActivity.class);
|
||||||
Bundle b = new Bundle();
|
Bundle b = new Bundle();
|
||||||
b.putSerializable(Helper.ARG_ACCOUNT, notification.account);
|
b.putSerializable(Helper.ARG_ACCOUNT, notification.account);
|
||||||
|
|
Loading…
Reference in New Issue