Skip to content

Commit ed82c14

Browse files
committed
Fixed size/length bug in last PR
1 parent cd3892f commit ed82c14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/utils/ElasticsearchResponseUtils.gs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ var ElasticsearchResponseUtils_ = (function() {
403403
if (i < numDataCols) {
404404
if (rowIsArray) {
405405
var index = fullCols[filteredCols[i]].index
406-
if (index < row.size) {
406+
if (index < row.length) {
407407
colArray.push(row[index])
408408
} else {
409409
colArray.push("") //(probably a skip col)

0 commit comments

Comments
 (0)