This commit is contained in:
pypy
2020-01-12 20:10:35 +09:00
parent 7b163bb2bb
commit 2ba8e339b1

View File

@@ -3715,7 +3715,7 @@ CefSharp.BindObjectAsync(
this.quickSearchItems = [];
if (query) {
var QUERY = query.toUpperCase();
for (var ctx in this.friends.values()) {
for (var ctx of this.friends.values()) {
if (ctx.ref) {
var NAME = ctx.name.toUpperCase();
var match = NAME.includes(QUERY);