Show the reply option on CommentMoreButtonSheetFragment when applicable in CommentsRecyclerViewAdapterNew.

This commit is contained in:
Docile-Alligator
2026-08-09 15:46:26 -04:00
parent 6ebea4f792
commit e80112d606

View File

@ -1009,6 +1009,7 @@ public class CommentsRecyclerViewAdapterNew extends ListAdapter<Comment, Recycle
bundle.putParcelable(CommentMoreBottomSheetFragment.EXTRA_COMMENT, comment);
bundle.putInt(CommentMoreBottomSheetFragment.EXTRA_POSITION, getBindingAdapterPosition());
bundle.putBoolean(CommentMoreBottomSheetFragment.EXTRA_IS_NSFW, mPost.isNSFW());
bundle.putBoolean(CommentMoreBottomSheetFragment.EXTRA_SHOW_REPLY_OPTION, !mPost.isArchived() && !mPost.isLocked() && !comment.isLocked());
CommentMoreBottomSheetFragment commentMoreBottomSheetFragment = new CommentMoreBottomSheetFragment();
commentMoreBottomSheetFragment.setArguments(bundle);
commentMoreBottomSheetFragment.show(mFragment.getChildFragmentManager(), commentMoreBottomSheetFragment.getTag());