From a769cdf25c5adf37323084af0cc230de0d143d27 Mon Sep 17 00:00:00 2001 From: milimoe Date: Tue, 12 May 2026 23:14:03 +0800 Subject: [PATCH] fb --- OshimaServers/Service/CSBettingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OshimaServers/Service/CSBettingService.cs b/OshimaServers/Service/CSBettingService.cs index 882517d..51e9237 100644 --- a/OshimaServers/Service/CSBettingService.cs +++ b/OshimaServers/Service/CSBettingService.cs @@ -118,7 +118,7 @@ namespace Oshima.FunGame.WebAPI.Services string mStatusStr = mstatus switch { 0 => "未开始", 1 => "进行中", 2 => "已结束", _ => "未知" }; string matchLabel = $"{t1} vs {t2}"; string clickableMatch = matchLabel.CreateCmdInput($"比赛详情 {mid}"); - matches.AppendLine($" [{mid}] {(stage != "" ? $"{stage} " : "")} {clickableMatch} (状态:{mStatusStr}, 结果:{result}, 截止:{deadline:MM-dd HH:mm})"); + matches.AppendLine($" [{mid}] {(stage != "" ? $"{stage} " : "")} {clickableMatch} (状态:{mStatusStr}{(result.Trim() != "" ? $", 结果:{result}" : "")}, 截止:{deadline:MM-dd HH:mm})"); } } else