From d4989f54011770cf60ee1b2010b646c9c9a86ed8 Mon Sep 17 00:00:00 2001 From: maplegao Date: Fri, 5 Sep 2025 20:51:07 +0800 Subject: [PATCH] format --- src/services/webhookService.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/webhookService.js b/src/services/webhookService.js index 5cd575f8..42a059a5 100644 --- a/src/services/webhookService.js +++ b/src/services/webhookService.js @@ -314,7 +314,7 @@ class WebhookService { return ( `## ${title}\n\n` + `> **服务**: Claude Relay Service\n` + - `> **时间**: ${new Date().toLocaleString('zh-CN', {timeZone: this.timezone})}\n\n${details}` + `> **时间**: ${new Date().toLocaleString('zh-CN', { timeZone: this.timezone })}\n\n${details}` ) } @@ -326,7 +326,7 @@ class WebhookService { return ( `#### 服务: Claude Relay Service\n` + - `#### 时间: ${new Date().toLocaleString('zh-CN', {timeZone: this.timezone})}\n\n${details}` + `#### 时间: ${new Date().toLocaleString('zh-CN', { timeZone: this.timezone })}\n\n${details}` ) } @@ -451,7 +451,7 @@ class WebhookService { // 添加服务标识和时间戳 lines.push(`\n服务: Claude Relay Service`) - lines.push(`时间: ${new Date().toLocaleString('zh-CN', {timeZone: this.timezone})}`) + lines.push(`时间: ${new Date().toLocaleString('zh-CN', { timeZone: this.timezone })}`) return lines.join('\n') }