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 4566ed4 commit b6c1f8fCopy full SHA for b6c1f8f
lib/components/Chat.js
@@ -58,11 +58,11 @@ function () {
58
function Chat(username, password, channel, obs) {
59
_classCallCheck(this, Chat);
60
61
- this.username = username; // username
+ this.username = username.toLowerCase(); // username
62
63
this.password = password; // oauth
64
65
- this.channel = "#".concat(channel); // #channel
+ this.channel = "#".concat(channel.toLowerCase()); // #channel
66
67
this.obsProps = obs;
68
this.obs = obs.obs;
0 commit comments