Skip to content

Commit

Permalink
Merge pull request #139 from fisuda/fix/to_worldmap
Browse files Browse the repository at this point in the history
FIX issue that output of NGSI to Worldmap node was 'no response object'
  • Loading branch information
fisuda committed May 30, 2023
2 parents b3218bb + c565c2b commit c5d6ef1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,5 +1,6 @@
## node-red-contrib-letsfiware-NGSI v0.14.0-next

- FIX issue that output of NGSI to Worldmap node was 'no response object' (#139)
- ADD prettier command (#138)
- FIX forbidden option that had no effect (#137)
- ADD GitHub action to close inactive issues (#136)
Expand Down
3 changes: 2 additions & 1 deletion src/nodes/NGSI/to-worldmap/to-worldmap.js
Expand Up @@ -103,7 +103,8 @@ module.exports = function (RED) {
}
pois.push(poi);
});
node.send({ payload: pois });
msg.payload = pois;
node.send(msg);
});
}
RED.nodes.registerType('NGSI to worldmap', ngsi2worldmap);
Expand Down

0 comments on commit c5d6ef1

Please sign in to comment.