Fixed indent
This commit is contained in:
parent
b18c13cc2c
commit
bf934e0268
1 changed files with 8 additions and 8 deletions
|
@ -35,11 +35,11 @@ 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();
|
||||||
|
|
Loading…
Reference in a new issue