From d2f71d11d6b18b9e249db92038b3c3184788421a Mon Sep 17 00:00:00 2001 From: Easy Date: Tue, 22 Oct 2024 16:48:51 +0800 Subject: [PATCH] Update API URL to compatible with the latest version of ServerChan (#5227) --- server/notification-providers/serverchan.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server/notification-providers/serverchan.js b/server/notification-providers/serverchan.js index ab9308c3..aee22f83 100644 --- a/server/notification-providers/serverchan.js +++ b/server/notification-providers/serverchan.js @@ -12,8 +12,9 @@ class ServerChan extends NotificationProvider { const okMsg = "Sent Successfully."; // serverchan3 requires sending via ft07.com - const url = String(notification.serverChanSendKey).startsWith("sctp") - ? `https://${notification.serverChanSendKey}.push.ft07.com/send` + const matchResult = String(notification.serverChanSendKey).match(/^sctp(\d+)t/i); + const url = matchResult && matchResult[1] + ? `https://${matchResult[1]}.push.ft07.com/send/${notification.serverChanSendKey}.send` : `https://sctapi.ftqq.com/${notification.serverChanSendKey}.send`; try {