search by worldId/InstanceId in feed and gameLog

This commit is contained in:
Natsumi
2023-05-30 01:48:33 +12:00
parent 0101f3474f
commit 5995a3f86a
2 changed files with 259 additions and 0 deletions

View File

@@ -8634,6 +8634,12 @@ speechSynthesis.getVoices();
if (!value) {
return true;
}
if (
value.startsWith('wrld_') &&
String(row.location).toUpperCase().includes(value)
) {
return true;
}
switch (row.type) {
case 'GPS':
if (String(row.displayName).toUpperCase().includes(value)) {
@@ -9257,6 +9263,12 @@ speechSynthesis.getVoices();
if (!value) {
return true;
}
if (
value.startsWith('wrld_') &&
String(row.location).toUpperCase().includes(value)
) {
return true;
}
switch (row.type) {
case 'Location':
if (String(row.worldName).toUpperCase().includes(value)) {