mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-30 18:24:03 +00:00
Restructured condition + ensure data is UTF-8
Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com>
This commit is contained in:
parent
69e1880cd3
commit
90a2668272
1 changed files with 3 additions and 5 deletions
|
@ -103,12 +103,10 @@ exports.pingAsync = function (hostname, ipv6 = false) {
|
||||||
min_reply: 3
|
min_reply: 3
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
// If ping failed, it will set field to unknown
|
// If ping failed, it will set field to unknown
|
||||||
if (!res.alive && res.host === "unknown") {
|
if (res.alive) {
|
||||||
reject(new Error("Name or service not known"));
|
|
||||||
} else if (res.time === "unknown") {
|
|
||||||
reject(new Error(res.output));
|
|
||||||
} else {
|
|
||||||
resolve(res.time);
|
resolve(res.time);
|
||||||
|
} else {
|
||||||
|
reject(new Error(exports.convertToUTF8(res.output)));
|
||||||
}
|
}
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
reject(err);
|
reject(err);
|
||||||
|
|
Loading…
Reference in a new issue