node-pluginsmanager-plugin 7.3.0 → 7.3.1

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.
@@ -340,7 +340,7 @@ class Server extends MediatorUser_1.default {
340
340
  if ("get" === req.method.toLowerCase()) {
341
341
  return Promise.resolve("");
342
342
  }
343
- else if (!(0, checkNonEmptyString_1.checkNonEmptyStringSync)("body", req.body)) {
343
+ else if ("undefined" !== typeof req.body) {
344
344
  return Promise.resolve(req.body);
345
345
  }
346
346
  else {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
 
3
3
  "name": "node-pluginsmanager-plugin",
4
- "version": "7.3.0",
4
+ "version": "7.3.1",
5
5
  "description": "An abstract parent plugin for node-pluginsmanager.",
6
6
 
7
7
  "type": "commonjs",