Click the comment icon to go into post details.

This commit is contained in:
Docile-Alligator 2023-09-18 19:00:42 -04:00
parent ee4a0167a3
commit 29a97822ab

View File

@ -3153,6 +3153,8 @@ public class PostRecyclerViewAdapter extends PagingDataAdapter<Post, RecyclerVie
}
});
commentsCountButton.setOnClickListener(view -> itemView.performClick());
saveButton.setOnClickListener(view -> {
int position = getBindingAdapterPosition();
if (position < 0) {
@ -4501,6 +4503,8 @@ public class PostRecyclerViewAdapter extends PagingDataAdapter<Post, RecyclerVie
}
});
commentsCountButton.setOnClickListener(view -> itemView.performClick());
saveButton.setOnClickListener(view -> {
if (mAccessToken == null) {
Toast.makeText(mActivity, R.string.login_first, Toast.LENGTH_SHORT).show();