Skip to content

Commit 691a431

Browse files
committed
Fix nested objects in feeds not being visible dump
1 parent f692b3b commit 691a431

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/structs/FlattenedJSON.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ class FlattenedJSON {
9191
const entry = item[i]
9292
const thisKeyNameWithPrevious = `${keyNameWithPrevious}[${i}]`
9393
if (FlattenedJSON.isObject(entry)) {
94-
return () => this._trampolineIteration(this._iterateOverObject, entry, thisKeyNameWithPrevious)
94+
this._trampolineIteration(this._iterateOverObject, entry, thisKeyNameWithPrevious)
9595
} else {
9696
this.results[thisKeyNameWithPrevious] = entry
9797
}
9898
}
9999
} else if (FlattenedJSON.isObject(item)) {
100-
return () => this._trampolineIteration(this._iterateOverObject, item, keyNameWithPrevious)
100+
this._trampolineIteration(this._iterateOverObject, item, keyNameWithPrevious)
101101
} else {
102102
this.results[keyNameWithPrevious] = cleanup(this.feed, item)
103103
}

0 commit comments

Comments
 (0)