From f09d61cff1121ac213136f852c23b123ff764923 Mon Sep 17 00:00:00 2001 From: milimoe Date: Sun, 10 May 2026 13:53:10 +0800 Subject: [PATCH] gs --- OshimaWebAPI/Services/CSBettingInputHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OshimaWebAPI/Services/CSBettingInputHandler.cs b/OshimaWebAPI/Services/CSBettingInputHandler.cs index c8e6e1f..6799adf 100644 --- a/OshimaWebAPI/Services/CSBettingInputHandler.cs +++ b/OshimaWebAPI/Services/CSBettingInputHandler.cs @@ -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); }