Skip to content

Commit

Permalink
Fix linking of nicks on parsed messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsOnlyBinary committed Jan 25, 2022
1 parent b7773e4 commit d4f2186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/MessageParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function matchUser(word, userList) {
let nickIdx = 0;

const trimWord = trim(word, punc);
let normWord = trimWord.toLowerCase();
let normWord = trimWord.toUpperCase();

if (hasProp.call(userList, normWord)) {
user = userList[normWord];
Expand Down

0 comments on commit d4f2186

Please sign in to comment.