mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
Compare commits
3 commits
481c7591be
...
d3feb24f4e
Author | SHA1 | Date | |
---|---|---|---|
|
d3feb24f4e | ||
|
d2f71d11d6 | ||
|
a6cb8584fc |
2 changed files with 4 additions and 3 deletions
|
@ -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 {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<transition name="slide-fade" appear>
|
||||
<MonitorList :scrollbar="true" />
|
||||
<MonitorList v-if="$root.isMobile" :scrollbar="true" />
|
||||
</transition>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Reference in a new issue