From 7414634d59c94fc5fa2cf9c080324e6c901fa1c9 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Mon, 15 Apr 2024 10:16:23 +0200 Subject: [PATCH] case insensitive commands --- app/TwitchBot/TwitchAppBot.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/TwitchBot/TwitchAppBot.php b/app/TwitchBot/TwitchAppBot.php index 13499f5..a103a88 100644 --- a/app/TwitchBot/TwitchAppBot.php +++ b/app/TwitchBot/TwitchAppBot.php @@ -41,16 +41,17 @@ class TwitchAppBot extends TwitchBot { public function handleChatCommand(Channel $channel, IRCMessage $msg) { $cmd = explode(' ', ltrim($msg->getText(), '!'), 2); - if (!isset($channel->chat_commands[$cmd[0]])) return; - $config = $channel->chat_commands[$cmd[0]]; - $this->getLogger()->info('got command '.$cmd[0].' on channel '.$channel->title); + $cmd_name = strtolower($cmd[0]); + if (!isset($channel->chat_commands[$cmd_name])) return; + $config = $channel->chat_commands[$cmd_name]; + $this->getLogger()->info('got command '.$cmd_name.' on channel '.$channel->title); try { $command = ChatCommand::create($this, $channel, $config); if ($command->checkAccess($msg)) { $command->execute($cmd[1] ?? ''); } } catch (\Exception $e) { - $this->getLogger()->warning('error executing command '.$cmd[0].' on channel '.$channel->title.': '.$e->getMessage()); + $this->getLogger()->warning('error executing command '.$cmd_name.' on channel '.$channel->title.': '.$e->getMessage()); } } -- 2.39.2