This commit is contained in:
2026-01-05 13:49:54 +01:00
parent 8bcb35a8f0
commit 58984214fc
7 changed files with 20 additions and 9 deletions
+4 -2
View File
@@ -75,8 +75,10 @@ export default async function checks<
}
if (newQuery?.searchQuery?.join) {
for (let i = 0; i < newQuery.searchQuery.join.length; i++) {
const join = newQuery.searchQuery.join[i];
const alljoins = newQuery?.searchQuery?.join.flat();
for (let i = 0; i < alljoins.length; i++) {
const join = alljoins[i];
if (!join) continue;