querysub 0.323.0 → 0.324.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "querysub",
3
- "version": "0.323.0",
3
+ "version": "0.324.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
@@ -177,7 +177,7 @@ function packageLogObj(type: string, args: unknown[]): LogDatum {
177
177
  let stringCount = 0;
178
178
  for (let i = 0; i < args.length; i++) {
179
179
  let param = args[i];
180
- if (canHaveChildren(param)) {
180
+ if (canHaveChildren(param) && !Array.isArray(param)) {
181
181
  Object.assign(logObj, param);
182
182
  } else {
183
183
  logObj["param" + stringCount] = param;