update fork #128

Manually merged
tristan merged 181 commits from mirror/monocles_chat_clean:master into master 2026-01-23 14:02:38 +01:00
Showing only changes of commit 057f74a435 - Show all commits

Remove redundant post_id extra from reply intent

Arne 2026-01-20 03:56:17 +01:00

View file

@ -557,7 +557,6 @@ public class PostsAdapter extends RecyclerView.Adapter<PostsAdapter.PostViewHold
Intent intent = new Intent(mActivity, CreatePostActivity.class);
intent.putExtra("in_reply_to_id", post.getId());
intent.putExtra("in_reply_to_node", post.getCommentsNode());
intent.putExtra("post_id", post.getId());
intent.putExtra("account", account.getUuid());
postResultLauncher.launch(intent);
}