From 6112bb457f4f18f10a5fcbdd49db01148e743a5d Mon Sep 17 00:00:00 2001 From: Supositware Date: Sat, 19 Jan 2019 23:27:41 +0100 Subject: [PATCH] removed verbose --- commands/utility/download.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utility/download.js b/commands/utility/download.js index 7ef1fd24..df6cc92f 100644 --- a/commands/utility/download.js +++ b/commands/utility/download.js @@ -30,7 +30,7 @@ class DownloadCommand extends Command { let big = false; if (link.includes('http') || link.includes('www')) { - let video = youtubedl(link, [`--username=${fbuser}`, `--password=${fbpasswd}`, '-v']); + let video = youtubedl(link, [`--username=${fbuser}`, `--password=${fbpasswd}`]); video.pipe(fs.createWriteStream('./video.mp4')); video.on('error', function error(err) { console.log('error 2:', err);