1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

bump tail and xmpp packages

This commit is contained in:
Dave Conway-Jones 2022-01-17 09:54:38 +00:00
parent b92ca63f93
commit 456e573cd7
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
3 changed files with 4 additions and 4 deletions

View File

@ -183,7 +183,7 @@ module.exports = function(RED) {
if (RED.settings.verbose || LOGITALL) {that.log("got an iq query"); } if (RED.settings.verbose || LOGITALL) {that.log("got an iq query"); }
if (stanza.attrs.type === 'error') { if (stanza.attrs.type === 'error') {
if (RED.settings.verbose || LOGITALL) {that.log("oh noes, it's an error"); } if (RED.settings.verbose || LOGITALL) {that.log("oh noes, it's an error"); }
if (stanza.attrs.id === that.lastUsed.id) { if (that && that.hasOwnProperty("lastUsed") && that.lastUsed.hasOwnProperty("id") && stanza.attrs.id === that.lastUsed.id) {
that.lastUsed.status({fill:"red", shape:"ring", text:stanza.getChild('error')}); that.lastUsed.status({fill:"red", shape:"ring", text:stanza.getChild('error')});
that.lastUsed.warn(stanza.getChild('error')); that.lastUsed.warn(stanza.getChild('error'));
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "node-red-node-xmpp", "name": "node-red-node-xmpp",
"version": "0.5.6", "version": "0.5.8",
"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"

View File

@ -1,9 +1,9 @@
{ {
"name": "node-red-node-tail", "name": "node-red-node-tail",
"version": "0.3.1", "version": "0.3.2",
"description": "A node to tail files for Node-RED", "description": "A node to tail files for Node-RED",
"dependencies": { "dependencies": {
"tail": "^2.2.2" "tail": "^2.2.4"
}, },
"repository": { "repository": {
"type": "git", "type": "git",