1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Merge pull request #2525 from Budibase/fix-indexing-attachments

Fix indexing of rows with attachments
This commit is contained in:
Andrew Kingston 2021-09-02 16:48:28 +01:00 committed by GitHub
commit 361f488d65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,11 +100,11 @@ exports.createAllSearchIndex = async appId => {
let idxKey = prev != null ? `${prev}.${key}` : key
idxKey = idxKey.replace(/ /, "_")
if (Array.isArray(input[key])) {
for (let val in input[key]) {
// eslint-disable-next-line no-undef
index(idxKey, input[key][val], {
store: true,
})
for (let val of input[key]) {
if (typeof val !== "object") {
// eslint-disable-next-line no-undef
index(idxKey, val, { store: true })
}
}
} else if (key === "_id" || key === "_rev" || input[key] == null) {
continue