Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:Z-Wave-Me/home-automation into d…
Browse files Browse the repository at this point in the history
…evelop
  • Loading branch information
PoltoS committed Jan 26, 2022
2 parents 052a2cb + f1115a7 commit 5be06df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions modules/ImportRemoteHA/index.js
@@ -1,7 +1,7 @@
/*** ImportRemoteHA Z-Way HA module *******************************************
Version: 2.0.3
(c) Z-Wave.Me, 2014
Version: 2.0.4
(c) Z-Wave.Me, 2022
-----------------------------------------------------------------------------
Author: Poltorak Serguei <ps@z-wave.me>, Niels Roche <nir@zwave.eu>
Description:
Expand Down Expand Up @@ -188,7 +188,7 @@ ImportRemoteHA.prototype.handleCommand = function(vDev, command, args) {
var argsFlat = "";
if (args) {
for (var key in args) {
argsFlat = (argsFlat ? "&" : "?") + key.toString() + "=" + args[key].toString();
argsFlat = argsFlat + (argsFlat ? "&" : "?") + key.toString() + "=" + args[key].toString();
}
}

Expand Down
2 changes: 1 addition & 1 deletion modules/ImportRemoteHA/module.json
Expand Up @@ -6,7 +6,7 @@
"homepage": "http://razberry.z-wave.me",
"icon": "icon.png",
"moduleName": "ImportRemoteHA",
"version": "2.0.3",
"version": "2.0.4",
"maturity": "stable",
"repository": {
"type": "git",
Expand Down

0 comments on commit 5be06df

Please sign in to comment.