From a4f290f50d7d843e2b668de24d7ea821b691f153 Mon Sep 17 00:00:00 2001 From: dragonfire535 Date: Fri, 15 Sep 2017 16:58:21 -0400 Subject: [PATCH] Beep --- commands/search/itunes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/itunes.js b/commands/search/itunes.js index b7a3f884..84e8b322 100644 --- a/commands/search/itunes.js +++ b/commands/search/itunes.js @@ -19,7 +19,7 @@ module.exports = class iTunesCommand extends Command { prompt: `What country should results be obtained for? Either ${list(countries, 'or')}.`, type: 'string', validate: country => { - if (countries.includes(country)) return true; + if (countries.includes(country.toLowerCase())) return true; return `Invalid country, please enter either ${list(countries, 'or')}.`; }, parse: country => country.toLowerCase()