From d8c78a0886eb31976c8486aaf5f08cd45d089967 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Mon, 15 Jun 2020 18:00:05 +0200 Subject: [PATCH] Fix missing quotation mark --- commands/fun/vidshittifier.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/fun/vidshittifier.js b/commands/fun/vidshittifier.js index 4366098c..89a11d34 100644 --- a/commands/fun/vidshittifier.js +++ b/commands/fun/vidshittifier.js @@ -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!'); }); }); }