Skip to content

Commit

Permalink
release v3.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz914 committed Feb 13, 2025
1 parent 160ae3c commit a5618e1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

### After update to v3.0.0 RESTFull and MQTT config settings need to be updated

## [3.6.5] - (13.02.2025)

## Changes

- fix plugin crash if tv services are disabled in plugin config


## [3.6.4] - (07.02.2025)

## Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "LG webOS TV",
"name": "homebridge-lgwebos-tv",
"version": "3.6.4",
"version": "3.6.5",
"description": "Homebridge plugin to control LG webOS TV.",
"license": "MIT",
"author": "grzegorz914",
Expand Down
6 changes: 3 additions & 3 deletions src/lgwebosdevice.js
Original file line number Diff line number Diff line change
Expand Up @@ -994,6 +994,9 @@ class LgWebOsDevice extends EventEmitter {
this.televisionService.addLinkedService(inputService);
this.allServices.push(inputService);
}

//sort inputs list
await this.displayOrder();
}


Expand Down Expand Up @@ -1680,9 +1683,6 @@ class LgWebOsDevice extends EventEmitter {
};
};

//sort inputs list
await this.displayOrder();

return accessory;
} catch (error) {
throw new Error(error)
Expand Down

0 comments on commit a5618e1

Please sign in to comment.