This commit is contained in:
milimoe 2026-05-10 13:53:10 +08:00
parent df4acc9a04
commit f09d61cff1
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -94,7 +94,7 @@ namespace Oshima.FunGame.WebAPI.Services
BotReply reply2 = BettingController.GetMyBets(uid, mid: matchId);
if (reply.Markdown != null && reply.Markdown.Content != null && !(reply2.Markdown?.Content?.Equals("你还没有任何竞猜记录。") ?? true))
{
reply.Markdown.Content = $"{reply.Markdown.Content.Trim()}\r\n{reply2.Markdown.Content}";
reply.Markdown.Content += reply2.Markdown.Content;
}
await SendAsync(e, "CS赛事竞猜", reply);
}