mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-08 06:22:34 -04:00
fix ping
This commit is contained in:
parent
e0ae9a9e73
commit
d5149f90b4
3 changed files with 5 additions and 9 deletions
|
@ -11,7 +11,7 @@ const { debug } = require("../src/util");
|
|||
|
||||
module.exports = Ping;
|
||||
|
||||
function Ping (host, options) {
|
||||
function Ping(host, options) {
|
||||
if (!host) {
|
||||
throw new Error("You must specify a host to ping!");
|
||||
}
|
||||
|
@ -106,7 +106,7 @@ Ping.prototype.send = function (callback) {
|
|||
}
|
||||
});
|
||||
|
||||
function onEnd () {
|
||||
function onEnd() {
|
||||
let stdout = this.stdout._stdout,
|
||||
stderr = this.stderr._stderr,
|
||||
ms;
|
||||
|
@ -122,10 +122,6 @@ Ping.prototype.send = function (callback) {
|
|||
ms = stdout.match(self._regmatch); // parse out the ##ms response
|
||||
ms = (ms && ms[1]) ? Number(ms[1]) : ms;
|
||||
|
||||
if (! ms) {
|
||||
debug(stdout)
|
||||
}
|
||||
|
||||
callback(null, ms, stdout);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue