mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 05:43:51 +02:00
Fix quick search history
This commit is contained in:
@@ -4098,7 +4098,8 @@ console.log(`isLinux: ${LINUX}`);
|
||||
|
||||
$app.methods.quickSearchRemoteMethod = function (query) {
|
||||
if (!query) {
|
||||
this.quickSearchItems = [];
|
||||
this.quickSearchItems = this.quickSearchUserHistory();
|
||||
return;
|
||||
}
|
||||
|
||||
const results = [];
|
||||
@@ -4194,7 +4195,6 @@ console.log(`isLinux: ${LINUX}`);
|
||||
} else {
|
||||
this.showUserDialog(value);
|
||||
}
|
||||
this.quickSearchUserHistory();
|
||||
}
|
||||
};
|
||||
|
||||
@@ -4218,7 +4218,7 @@ console.log(`isLinux: ${LINUX}`);
|
||||
});
|
||||
}
|
||||
});
|
||||
this.quickSearchItems = results;
|
||||
return results;
|
||||
};
|
||||
|
||||
// #endregion
|
||||
@@ -8973,6 +8973,7 @@ console.log(`isLinux: ${LINUX}`);
|
||||
});
|
||||
this.showUserDialogHistory.delete(userId);
|
||||
this.showUserDialogHistory.add(userId);
|
||||
this.quickSearchItems = this.quickSearchUserHistory();
|
||||
};
|
||||
|
||||
$app.methods.applyUserDialogLocation = function (updateInstanceOccupants) {
|
||||
|
||||
Reference in New Issue
Block a user