Fixed indent
This commit is contained in:
parent
b18c13cc2c
commit
bf934e0268
1 changed files with 8 additions and 8 deletions
|
@ -35,16 +35,16 @@ class DownloadCommand extends Command {
|
||||||
|
|
||||||
if (link.includes('http') || link.includes('www')) {
|
if (link.includes('http') || link.includes('www')) {
|
||||||
if (args.alt) {
|
if (args.alt) {
|
||||||
console.log('alt download!')
|
console.log('alt download!');
|
||||||
fs.unlink('./video.mp4', (err) => {
|
fs.unlink('./video.mp4', (err) => {
|
||||||
if (err);
|
if (err);
|
||||||
});
|
});
|
||||||
return youtubedl.exec(args.link, ['-o', `./video.mp4`], {}, function(err, output) {
|
return youtubedl.exec(args.link, ['-o', './video.mp4'], {}, function(err, output) {
|
||||||
if (err) throw err;
|
if (err) throw err;
|
||||||
console.log(output.join('\n'));
|
console.log(output.join('\n'));
|
||||||
message.delete();
|
message.delete();
|
||||||
message.channel.send(`Downloaded by ${message.author.username}`, { files: ['./video.mp4'] })
|
message.channel.send(`Downloaded by ${message.author.username}`, { files: ['./video.mp4'] })
|
||||||
.catch(() => message.channel.send('File too big'));
|
.catch(() => message.channel.send('File too big'));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue