mirror of
https://github.com/thelounge/thelounge
synced 2024-11-13 07:47:09 +00:00
Merge pull request #1091 from PolarizedIons/fix-autocomplete
Fix broken nick autocomplete caused by #856
This commit is contained in:
commit
5eb5b99115
1 changed files with 1 additions and 1 deletions
|
@ -1380,7 +1380,7 @@ $(function() {
|
|||
}
|
||||
|
||||
function completeNicks(word) {
|
||||
const users = chat.find(".active").find(".users");
|
||||
const users = chat.find(".active").find(".names-original");
|
||||
const words = users.data("nicks");
|
||||
|
||||
return $.grep(
|
||||
|
|
Loading…
Reference in a new issue