rez_core 5.0.111 → 5.0.112

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": "rez_core",
3
- "version": "5.0.111",
3
+ "version": "5.0.112",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -780,7 +780,10 @@ export class FilterService {
780
780
  // Force every param to be a string
781
781
  if (clause.params) {
782
782
  Object.keys(clause.params).forEach((k) => {
783
- clause.params[k] = String(clause.params[k]);
783
+ const val = clause.params[k];
784
+ if (!Array.isArray(val)) {
785
+ clause.params[k] = String(val); // only convert scalar values
786
+ }
784
787
  });
785
788
  }
786
789