mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
bugfix
This commit is contained in:
+1
-1
@@ -3715,7 +3715,7 @@ CefSharp.BindObjectAsync(
|
|||||||
this.quickSearchItems = [];
|
this.quickSearchItems = [];
|
||||||
if (query) {
|
if (query) {
|
||||||
var QUERY = query.toUpperCase();
|
var QUERY = query.toUpperCase();
|
||||||
for (var ctx in this.friends.values()) {
|
for (var ctx of this.friends.values()) {
|
||||||
if (ctx.ref) {
|
if (ctx.ref) {
|
||||||
var NAME = ctx.name.toUpperCase();
|
var NAME = ctx.name.toUpperCase();
|
||||||
var match = NAME.includes(QUERY);
|
var match = NAME.includes(QUERY);
|
||||||
|
|||||||
Reference in New Issue
Block a user