ispapi-apiconnector
Advanced tools
Comparing version 4.0.17 to 4.0.18
@@ -32,3 +32,3 @@ /* | ||
Object.keys(p_cmd).forEach(function(key) { | ||
if (p_cmd[key]) { //sentry #1785 "TypeError: Cannot read property 'toString' of null" | ||
if (p_cmd[key]!==null||p_cmd[key]!==undefined) { // 'toString' won't work | ||
tmp += key + '=' + p_cmd[key].toString().replace(/\r|\n/g, "") + "\n"; | ||
@@ -35,0 +35,0 @@ } |
@@ -0,1 +1,5 @@ | ||
4.0.18 / 2017-08.31 | ||
=================== | ||
* review null value check of previous change | ||
4.0.17 / 2017-08.31 | ||
@@ -2,0 +6,0 @@ =================== |
{ | ||
"name": "ispapi-apiconnector", | ||
"description": "1API API Connector for node.js", | ||
"version": "4.0.17", | ||
"version": "4.0.18", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Kai Schwarz", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81513