From 334c0d933be12f5aac56948a47ccbfebc1c806cd Mon Sep 17 00:00:00 2001 From: calzoneman Date: Sun, 24 May 2015 11:09:56 -0400 Subject: [PATCH] Fix typo --- lib/ffmpeg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ffmpeg.js b/lib/ffmpeg.js index e81a7345..ce16cad6 100644 --- a/lib/ffmpeg.js +++ b/lib/ffmpeg.js @@ -41,7 +41,7 @@ function testUrl(url, cb, redirected) { if (res.statusCode === 301 || res.statusCode === 302) { if (redirected) { - return cb("Too many redirects. Please provide a direct link to the " + return cb("Too many redirects. Please provide a direct link to the " + "file"); } return testUrl(res.headers['location'], cb, true);