Skip to content

Commit

Permalink
Merge pull request #41 from usnistgov/fix-filter-pipeline-data
Browse files Browse the repository at this point in the history
make filter_info object keys consistent
  • Loading branch information
bmaranville authored Jan 8, 2025
2 parents 18d2585 + a59e1b6 commit 229bed2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion esm/dataobjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ export class DataObjects {
filter_info.set('name', name);
let client_values = struct.unpack_from(`<${num_client_values}i`, buf, offset);
offset += (4 * num_client_values);
filter_info.set('client_data_values', client_values);
filter_info.set('client_data', client_values);
filter_info.set('client_data_values', num_client_values);
filters.push(filter_info);
}
}
Expand Down

0 comments on commit 229bed2

Please sign in to comment.