@ikonintegration/ikapi 3.0.10 → 3.0.11

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": "@ikonintegration/ikapi",
3
- "version": "3.0.10",
3
+ "version": "3.0.11",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "module": "main.js",
@@ -114,7 +114,7 @@ export default class IKLogger {
114
114
  /* Sensitive information handling */
115
115
  _supressSensitiveInfo(value) {
116
116
  //realy false
117
- if (this._config.enableSensitiveFiltering !== undefined && !this._config.enableSensitiveFiltering) return value;
117
+ if (this._config.enableSensitiveFiltering !== undefined && (!this._config.enableSensitiveFiltering || this._config.enableSensitiveFiltering == 'false')) return value;
118
118
  if (typeof value == "string") {
119
119
  //content based replacement
120
120
  blacklist.forEach((f) => {