Skip to content

Commit

Permalink
Update GetGroupHonorInfoOperation.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ishkong authored Nov 12, 2024
1 parent 8bcec63 commit 44ce900
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public async Task<OneBotResult> HandleOperation(BotContext context, JsonNode? pa
string raw = await response.Content.ReadAsStringAsync();
var match = HonorRegex().Match(raw);

if (JsonSerializer.Deserialize<JsonObject>(match.Groups[1].Value) is { } json)
if (JsonSerializer.Deserialize<JsonObject>(match.Groups[1].Value) is { } json) // 神经病
{
foreach (var (key, value) in Keys)
{
Expand Down

0 comments on commit 44ce900

Please sign in to comment.