mirror of https://github.com/calzoneman/sync.git
ffmpeg: add ETIMEDOUT error message
This commit is contained in:
parent
99076412b6
commit
2990d83c02
|
@ -129,6 +129,9 @@ function testUrl(url, cb, redirCount) {
|
||||||
} else if (err.code === 'ECONNREFUSED') {
|
} else if (err.code === 'ECONNREFUSED') {
|
||||||
cb("The remote server refused the connection. Please check that the link is correct.");
|
cb("The remote server refused the connection. Please check that the link is correct.");
|
||||||
return;
|
return;
|
||||||
|
} else if (err.code === 'ETIMEDOUT') {
|
||||||
|
cb("The connection to the remote server timed out. Please check that the link is correct.");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
LOGGER.error("Error sending preflight request: %s (link: %s)", err.message, url);
|
LOGGER.error("Error sending preflight request: %s (link: %s)", err.message, url);
|
||||||
|
|
Loading…
Reference in New Issue