Skip to content

Commit

Permalink
1.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoduj committed Apr 20, 2019
1 parent 239f1e4 commit e001dc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions harmonySubPlatform.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ HarmonySubPlatform.prototype = {

let accessoriesToAdd = [];
var myHarmonyAccessory;
let name = this.devMode ? 'DEV' : 'Switch';
let name = this.devMode ? 'DEV' : '' + 'Switch';

if (!this.publishSwitchActivitiesAsIndividualAccessories) {
myHarmonyAccessory = this.harmonyBase.checkAccessory(this, name);
Expand Down Expand Up @@ -211,7 +211,7 @@ HarmonySubPlatform.prototype = {
readTVAccessories: function(data) {
let activities = data.data.activity;
let accessoriesToAdd = [];
let name = this.devMode ? 'DEV' : 'TV';
let name = this.devMode ? 'DEV' : '' + 'TV';

myHarmonyAccessory = this.harmonyBase.checkAccessory(this, name);

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-harmony",
"version": "1.0.0-beta11",
"version": "1.0.0-rc.1",
"author": "Nicolas Dujardin",
"description": "Publish your harmony activities as homekit accessories",
"main": "index.js",
Expand All @@ -25,6 +25,7 @@
],
"dependencies": {
"harmony-websocket": "^1.0.9",
"npm": "^6.9.0",
"request": "^2.65.0",
"websocket": "^1.0.28",
"websocket-as-promised": "^0.9.0"
Expand Down

0 comments on commit e001dc8

Please sign in to comment.