Fix missing quotation mark

This commit is contained in:
loicbersier 2020-06-15 18:00:05 +02:00
parent c016318bfd
commit d8c78a0886

View file

@ -43,7 +43,7 @@ class vidshittifierCommand extends Command {
let compression;
let audioCompression;
if (args.compression == 1) {
if (args.compression === 1) {
compression = '50k';
audioCompression = '100k';
} else {
@ -88,7 +88,7 @@ class vidshittifierCommand extends Command {
.catch(err => {
console.error(err);
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!');
});
});
}