Fix the first post card not clickable in PostRecyclerView Adapter.

This commit is contained in:
Alex Ning 2020-07-17 16:20:19 +08:00
parent d06f66975e
commit 09efd35b29

View File

@ -1354,7 +1354,7 @@ public class PostRecyclerViewAdapter extends PagedListAdapter<Post, RecyclerView
cardView.setOnClickListener(view -> { cardView.setOnClickListener(view -> {
int position = getAdapterPosition(); int position = getAdapterPosition();
if (position > 0 && canStartActivity) { if (position >= 0 && canStartActivity) {
canStartActivity = false; canStartActivity = false;
Intent intent = new Intent(mActivity, ViewPostDetailActivity.class); Intent intent = new Intent(mActivity, ViewPostDetailActivity.class);