pinokiod 3.19.67 → 3.19.68

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/kernel/util.js CHANGED
@@ -481,6 +481,7 @@ function push(params) {
481
481
  if (params.image && !params.contentImage) {
482
482
  params.contentImage = params.image
483
483
  }
484
+ console.log("Notifier.notify", params)
484
485
  notifier.notify(params)
485
486
  }
486
487
  function p2u(localPath) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.19.67",
3
+ "version": "3.19.68",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/server/index.js CHANGED
@@ -3198,6 +3198,7 @@ class Server {
3198
3198
  }
3199
3199
  }))
3200
3200
  this.app.post("/push", ex(async (req, res) => {
3201
+ console.log("Push", req.body)
3201
3202
  try {
3202
3203
  Util.push(req.body)
3203
3204
  res.json({ success: true })