feat: 新版秘境结算提示支持

This commit is contained in:
LyMysterious
2025-10-26 18:40:32 +08:00
parent 35b9755e9c
commit ea73d594c5
3 changed files with 2 additions and 3 deletions
@@ -24,7 +24,7 @@ namespace NapCatRobotClient.API.Controllers
{
using StreamReader reader = new(Request.Body);
string body = await reader.ReadToEndAsync();
Log.Information($"接收到群消息:{body}");
//Log.Information($"接收到群消息:{body}");
bool result = await _dispatcherService.ReceiveMessageAndProcess(body);
return Ok(result);
}