Skip to content

Commit

Permalink
2.1.8
Browse files Browse the repository at this point in the history
- fix channelupdaterate - Fixes #84
  • Loading branch information
normen committed May 9, 2020
1 parent d8cc858 commit e9c1f93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function SonyTV (platform, config, accessory = null) {
this.tvsource = config.tvsource || null;
this.soundoutput = config.soundoutput || 'speaker';
this.updaterate = config.updaterate || 5000;
this.channelupdaterate = config.channelupdaterate || 30000;
this.channelupdaterate = config.channelupdaterate === undefined?30000:config.channelupdaterate;
this.starttimeout = config.starttimeout || 5000;
this.comp = config.compatibilitymode;
this.serverPort = config.serverPort || 8999;
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-bravia",
"version": "2.1.7",
"version": "2.1.8",
"description": "Homebridge plugin for Sony Bravia TVs (AndroidTV based ones and possibly others)",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e9c1f93

Please sign in to comment.