update xmpp to keep working with open fire

This commit is contained in:
Dave Conway-Jones 2018-03-29 17:39:46 +01:00
parent 84a445d9d8
commit b8b5a92ad1
No known key found for this signature in database
GPG Key ID: 9E7F9C73F5168CD4
2 changed files with 5 additions and 3 deletions

View File

@ -102,7 +102,8 @@ module.exports = function(RED) {
host : node.host,
port : node.port,
skipPresence : true,
reconnect : false
reconnect : false,
preferred : "PLAIN"
});
}
catch(e) {
@ -179,7 +180,8 @@ module.exports = function(RED) {
host : node.host,
port : node.port,
skipPresence : true,
reconnect : false
reconnect : false,
preferred : "PLAIN"
});
}
catch(e) {

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-xmpp",
"version" : "0.1.6",
"version" : "0.1.7",
"description" : "A Node-RED node to talk to an XMPP server",
"dependencies" : {
"simple-xmpp" : "1.3.*"