Skip to content

Commit 40494f8

Browse files
Improved performance for Playback and Input controller, and resolve device not responding message after a command (#759)
* Bug fix * Update CHANGELOG.md
1 parent 453df2b commit 40494f8

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/).
44

5+
## 0.8.1 (2024-12-24)
6+
7+
## [Version 0.8.0](https://github.com/northernman54/homebridge-alexa/compare/v0.8.0...v0.8.1)
8+
9+
#### Bug Fix
10+
11+
- Improved performance for Playback and Input controller, and resolve device not responding after a command
12+
513
## 0.8.0 (2024-12-24)
614

715
## [Version 0.8.0](https://github.com/northernman54/homebridge-alexa/compare/v0.7.1...v0.8.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "homebridge-alexa",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Control your Homebridge devices with Amazon Alexa.",
55
"main": "src/plugin.js",
66
"scripts": {

src/lib/alexaMessages.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ function alexaResponse(message, hbResponse, err, value) {
6969
"messageId": message.directive.header.messageId,
7070
"namespace": "Alexa",
7171
"name": "Response",
72+
"correlationToken": message.directive.header.correlationToken,
7273
"payloadVersion": "3"
7374
},
7475
"endpoint": {
@@ -94,6 +95,7 @@ function alexaResponse(message, hbResponse, err, value) {
9495
"messageId": message.directive.header.messageId,
9596
"namespace": "Alexa",
9697
"name": "Response",
98+
"correlationToken": message.directive.header.correlationToken,
9799
"payloadVersion": "3"
98100
},
99101
"endpoint": {

0 commit comments

Comments
 (0)