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.
This commit is contained in:
kyuuseiryuu 2026-03-25 00:09:04 +09:00
parent 53a95bfdf2
commit 548700319f

View File

@ -96,7 +96,7 @@ export class KaiqiuService {
} = await this.getEventInfo(matchId); } = await this.getEventInfo(matchId);
const event: IEventInfo = { const event: IEventInfo = {
title, title,
info: [`比赛时间:${startDate}`, place, see, nums], info: [`比赛时间:${startDate}`, place, [see, nums].join(' ')],
url: eventURL, url: eventURL,
startDate, startDate,
matchId, matchId,