Allow getting group count during generation

b226081469a5f93bd03220b47f92e184432212ac

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +0 -5Showing whitespace changes
public/scripts/slash-commands.js+0 -5
@@ -3505,11 +3505,6 @@ async function countGroupMemberCallback() {
3505 return '';3505 return '';
3506 }3506 }
35073507
3508 if (is_group_generating) {
3509 toastr.warning('Cannot run /member-count command while the group reply is generating.');
3510 return '';
3511 }
3512
3513 return getGroupMembers(selected_group).length;3508 return getGroupMembers(selected_group).length;
3514}3509}
35153510