Skip to content

Commit

Permalink
add missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
YumeMuzi authored Mar 21, 2024
1 parent 8ae6314 commit 1577008
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,17 +259,17 @@ public GroupRequestResponse Monitor(HttpApiClient httpApiClient, GroupRequest e)

if (limit > 0 && limit <= 3000)
{
groups = "进阶群 928936255"
reason = "新人群超限"
groups = "进阶群 928936255";
reason = "新人群超限";
}
else if (limit > 3000 && limit <= 4500)
{
groups = "高阶群 281624271"
reason = "进阶群超限"
groups = "高阶群 281624271";
reason = "进阶群超限";
}
else if (limit > 4500 && limit <= 6000)
{
reason = "高阶群超限"
reason = "高阶群超限";
}

response = response + groups + "。";
Expand Down

0 comments on commit 1577008

Please sign in to comment.