mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Fix id handling to close #897
This commit is contained in:
parent
fb9c90f68c
commit
757abe3209
@ -444,7 +444,7 @@ module.exports = function(RED) {
|
|||||||
if (body) {
|
if (body) {
|
||||||
var msg = { payload:body.getText(), subject:node.subject[stanza.attrs.from.split('/')[0]] };
|
var msg = { payload:body.getText(), subject:node.subject[stanza.attrs.from.split('/')[0]] };
|
||||||
var ids = stanza.attrs.from.split('/');
|
var ids = stanza.attrs.from.split('/');
|
||||||
if (ids[1].length !== 36) {
|
if (ids.length > 1 && ids[1].length !== 36) {
|
||||||
msg.topic = stanza.attrs.from
|
msg.topic = stanza.attrs.from
|
||||||
}
|
}
|
||||||
else { msg.topic = ids[0]; }
|
else { msg.topic = ids[0]; }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red-node-xmpp",
|
"name": "node-red-node-xmpp",
|
||||||
"version": "0.5.9",
|
"version": "0.5.10",
|
||||||
"description": "A Node-RED node to talk to an XMPP server",
|
"description": "A Node-RED node to talk to an XMPP server",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@xmpp/client": "^0.13.0"
|
"@xmpp/client": "^0.13.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user