mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 07:14:04 +00:00
Compare commits
1 commit
56f4f978f7
...
d967d99b6c
Author | SHA1 | Date | |
---|---|---|---|
|
d967d99b6c |
1 changed files with 2 additions and 3 deletions
|
@ -12,9 +12,8 @@ class ServerChan extends NotificationProvider {
|
||||||
const okMsg = "Sent Successfully.";
|
const okMsg = "Sent Successfully.";
|
||||||
|
|
||||||
// serverchan3 requires sending via ft07.com
|
// serverchan3 requires sending via ft07.com
|
||||||
const matchResult = String(notification.serverChanSendKey).match(/^sctp(\d+)t/i);
|
const url = String(notification.serverChanSendKey).startsWith("sctp")
|
||||||
const url = matchResult && matchResult[1]
|
? `https://${notification.serverChanSendKey}.push.ft07.com/send`
|
||||||
? `https://${matchResult[1]}.push.ft07.com/send/${notification.serverChanSendKey}.send`
|
|
||||||
: `https://sctapi.ftqq.com/${notification.serverChanSendKey}.send`;
|
: `https://sctapi.ftqq.com/${notification.serverChanSendKey}.send`;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue