@5minds/node-red-contrib-processcube 1.1.4-feature-7f6f80-m04ymlze → 1.1.4-feature-3050c0-m04ysmbf
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/process-new-listener.js +2 -2
package/package.json
CHANGED
package/process-new-listener.js
CHANGED
@@ -17,7 +17,7 @@ module.exports = function (RED) {
|
|
17
17
|
let subscription;
|
18
18
|
|
19
19
|
if (node.engine.isIdentityReady()) {
|
20
|
-
subscription = await client.
|
20
|
+
subscription = await client.notification.onProcessStarted(
|
21
21
|
(processNotification) => {
|
22
22
|
// node.send({
|
23
23
|
// payload: {
|
@@ -40,7 +40,7 @@ module.exports = function (RED) {
|
|
40
40
|
|
41
41
|
currentIdentity = identity;
|
42
42
|
|
43
|
-
subscription = await client.
|
43
|
+
subscription = await client.notification.onProcessStarted(
|
44
44
|
(processNotification) => {
|
45
45
|
// node.send({
|
46
46
|
// payload: {
|