From 548700319fa19d077d757e88ebda824312cd6357 Mon Sep 17 00:00:00 2001 From: kyuuseiryuu Date: Wed, 25 Mar 2026 00:09:04 +0900 Subject: [PATCH] style(KaiqiuService): merge see and nums into single string Update the `info` array generation logic to concatenate the `see` and `nums` values into a single string separated by a space, instead of keeping them as separate array elements. This change standardizes the format of the information display for match events. --- src/services/KaiqiuService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/KaiqiuService.ts b/src/services/KaiqiuService.ts index 046308b..0a16da8 100644 --- a/src/services/KaiqiuService.ts +++ b/src/services/KaiqiuService.ts @@ -96,7 +96,7 @@ export class KaiqiuService { } = await this.getEventInfo(matchId); const event: IEventInfo = { title, - info: [`比赛时间:${startDate}`, place, see, nums], + info: [`比赛时间:${startDate}`, place, [see, nums].join(' ')], url: eventURL, startDate, matchId,