Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
chr233 committed Jan 16, 2023
1 parent 2478614 commit 3ba0d90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion XinjingdailyBot.Command/AdminCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ public async Task ResponseUserRank(Message message)
var count = 1;
foreach (var user in adminReviewCountRank)
{
sb.AppendLine($"{count++}. {(!user.PreferAnonymous ? user.EscapedFullName() : "匿名用户")} {user.AcceptCount}");
sb.AppendLine($"{count++}. {(!user.PreferAnonymous ? user.EscapedFullName() : "匿名用户")} {user.ReviewCount}");
}
}
else
Expand Down
2 changes: 1 addition & 1 deletion XinjingdailyBot.WebAPI/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Reflection;

[assembly: CLSCompliant(false)]
[assembly: AssemblyVersion("2.0.8.2")]
[assembly: AssemblyVersion("2.0.8.3")]

[assembly: AssemblyCopyright("Copyright @ 2023 Chr_")]
[assembly: AssemblyProduct("XinjingDaily Bot")]
Expand Down

0 comments on commit 3ba0d90

Please sign in to comment.