Skip to content

Commit

Permalink
fix: chat profile cannot open subscribers requests
Browse files Browse the repository at this point in the history
  • Loading branch information
omg-xtao committed Sep 5, 2024
1 parent ad23540 commit 081e535
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3953,6 +3953,9 @@ public void openExceptions() {
ChatUsersActivity fragment = new ChatUsersActivity(args);
fragment.setInfo(chatInfo);
presentFragment(fragment);
} else if (position == subscribersRequestsRow) {
MemberRequestsActivity activity = new MemberRequestsActivity(chatId);
presentFragment(activity);
} else if (position == administratorsRow) {
Bundle args = new Bundle();
args.putLong("chat_id", chatId);
Expand Down

0 comments on commit 081e535

Please sign in to comment.