mirror of
https://github.com/moparisthebest/Yaaic
synced 2025-01-07 19:58:10 -05:00
Proper case insensitive nick completion (untested)
This commit is contained in:
parent
8c8e9e8081
commit
61e1681b03
@ -923,7 +923,7 @@ public class ConversationActivity extends Activity implements ServiceConnection,
|
||||
|
||||
for (int i = 0; i < users.length; i++) {
|
||||
String nick = removeStatusChar(users[i].toLowerCase());
|
||||
if (nick.startsWith(word)) {
|
||||
if (nick.startsWith(word.toLowerCase())) {
|
||||
result.add(Integer.valueOf(i));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user