mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
fixed formatting mistakes
This commit is contained in:
parent
c9132adfc7
commit
9f563adc1a
|
@ -48,7 +48,7 @@ class Discord extends NotificationProvider {
|
|||
},
|
||||
{
|
||||
name: monitorJSON["type"] === "push" ? "Service Type" : "Service URL",
|
||||
value: monitorJSON["type"] === "push" ? "Heartbeat" : address,
|
||||
value: this.extractAdress(monitorJSON),
|
||||
},
|
||||
{
|
||||
name: `Time (${heartbeatJSON["timezone"]})`,
|
||||
|
|
|
@ -21,13 +21,12 @@ class NotificationProvider {
|
|||
|
||||
/**
|
||||
* Extracts the address from a monitor JSON object based on its type.
|
||||
*
|
||||
* @param {?object} monitorJSON Monitor details (For Up/Down only)
|
||||
* @returns {string} The extracted address based on the monitor type.
|
||||
*/
|
||||
extractAdress(monitorJSON){
|
||||
extractAdress(monitorJSON) {
|
||||
if (!monitorJSON) {
|
||||
return ""
|
||||
return "";
|
||||
}
|
||||
switch (monitorJSON["type"]) {
|
||||
case "push":
|
||||
|
@ -41,7 +40,7 @@ class NotificationProvider {
|
|||
if (monitorJSON["port"]) {
|
||||
return monitorJSON["hostname"] + ":" + monitorJSON["port"];
|
||||
}
|
||||
return monitorJSON["hostname"]
|
||||
return monitorJSON["hostname"];
|
||||
default:
|
||||
if (![ "https://", "http://", "" ].includes(monitorJSON["url"])) {
|
||||
return monitorJSON["url"];
|
||||
|
|
|
@ -32,7 +32,7 @@ class SevenIO extends NotificationProvider {
|
|||
return okMsg;
|
||||
}
|
||||
|
||||
let address = extractAdress(monitorJSON);
|
||||
let address = this.extractAdress(monitorJSON);
|
||||
if (address !== "") {
|
||||
address = `(${address}) `;
|
||||
}
|
||||
|
|
|
@ -82,12 +82,10 @@ class ZohoCliq extends NotificationProvider {
|
|||
return okMsg;
|
||||
}
|
||||
|
||||
|
||||
|
||||
const payload = this._notificationPayloadFactory({
|
||||
monitorMessage: heartbeatJSON.msg,
|
||||
monitorName: monitorJSON.name,
|
||||
monitorUrl: address,
|
||||
monitorUrl: this.extractAdress(monitorJSON),
|
||||
status: heartbeatJSON.status
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue