Skip to content

Commit

Permalink
1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoduj committed May 1, 2023
1 parent 1ed580a commit 7ff31d0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## 1.6.3

- [FIX] Change heading level h6 to h5 #418. Thanks to @lisanet
- [FIX] handling empty other platform

## 1.6.2

- [FIX] Add correct help message to sequencesToPublishAsAccessoriesSwitch in config UI #416. Thanks to @lisanet
Expand Down
2 changes: 1 addition & 1 deletion harmonyPlatform.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function HarmonyPlatform(log, config, api) {
this.plaformsConfigs = [];
this.plaformsConfigs.push(config);

if (config['otherPlatforms']) {
if (config['otherPlatforms'] && config['otherPlatforms'].length > 0) {
this.plaformsConfigs.push.apply(this.plaformsConfigs, config['otherPlatforms']);
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-harmony",
"version": "1.6.2",
"version": "1.6.3",
"author": "Nicolas Dujardin",
"description": "Publish your harmony activities as homekit accessories",
"main": "index.js",
Expand Down

0 comments on commit 7ff31d0

Please sign in to comment.