This commit is contained in:
milimoe 2026-05-12 23:14:03 +08:00
parent bd2a127e71
commit a769cdf25c
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -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