Skip to content

Commit

Permalink
fix: autocomplete being lowercase (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
vyneer authored Nov 28, 2023
1 parent a0cc32a commit c189df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/chat/js/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ class Chat {
users.push(this.addUser(data.recipient));
}
users.forEach((u) =>
this.autocomplete.add(u.username, false, Date.now()),
this.autocomplete.add(u.displayName, false, Date.now()),
);
}
}
Expand Down

0 comments on commit c189df3

Please sign in to comment.