Fix missing quotation mark
This commit is contained in:
parent
c016318bfd
commit
d8c78a0886
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ class vidshittifierCommand extends Command {
|
||||||
let compression;
|
let compression;
|
||||||
let audioCompression;
|
let audioCompression;
|
||||||
|
|
||||||
if (args.compression == 1) {
|
if (args.compression === 1) {
|
||||||
compression = '50k';
|
compression = '50k';
|
||||||
audioCompression = '100k';
|
audioCompression = '100k';
|
||||||
} else {
|
} else {
|
||||||
|
@ -88,7 +88,7 @@ class vidshittifierCommand extends Command {
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
loadingmsg.delete();
|
loadingmsg.delete();
|
||||||
return message.channel.send('Oh no! an error just occured! We don't know what causes this error yet, so let us know!);
|
return message.channel.send('Oh no! an error just occured! We don\'t know what causes this error yet, so let us know!');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue