ffmpeg: add ETIMEDOUT error message

This commit is contained in:
Calvin Montgomery 2017-08-14 20:33:09 -07:00
parent 99076412b6
commit 2990d83c02
1 changed files with 3 additions and 0 deletions

View File

@ -129,6 +129,9 @@ function testUrl(url, cb, redirCount) {
} else if (err.code === 'ECONNREFUSED') {
cb("The remote server refused the connection. Please check that the link is correct.");
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);