Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

Commit

Permalink
Pass processing if doc[field] == null (#361)
Browse files Browse the repository at this point in the history
Pass processing if doc[field] == null
Based on #327 (comment)
  • Loading branch information
uzhinskiy authored May 11, 2021
1 parent eedcdab commit 368eb03
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kibana-reports/server/routes/utils/dataReportHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ function traverse(data, keys, result = {}) {
*/
function sanitize(doc: any) {
for (const field in doc) {
if (doc[field] == null)
continue
if (
doc[field].toString().startsWith('+') ||
doc[field].toString().startsWith('-') ||
Expand Down

0 comments on commit 368eb03

Please sign in to comment.