We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b159a10 commit 4566ed4Copy full SHA for 4566ed4
src/components/Chat.js
@@ -15,9 +15,9 @@ const log = signale.scope("CHT");
15
16
class Chat {
17
constructor(username, password, channel, obs) {
18
- this.username = username; // username
+ this.username = username.toLowerCase(); // username
19
this.password = password; // oauth
20
- this.channel = `#${channel}`; // #channel
+ this.channel = `#${channel.toLowerCase()}`; // #channel
21
this.obsProps = obs;
22
this.obs = obs.obs;
23
this.prefix = config.twitchChat.prefix;
0 commit comments