Skip to content

Commit

Permalink
Fix EXTERIOR_BLIND reference
Browse files Browse the repository at this point in the history
  • Loading branch information
coldfire84 committed Jan 23, 2020
1 parent f3e97e9 commit 10d895d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/state.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ const sendGoogleHomeState = async(user, device) => {
enableDevTypeStateReport = true;
sendGoogleStateUpdate = true;
}
else if (device.displayCategories.indexOf("EXTERNAL_BLIND") > -1) {
else if (device.displayCategories.indexOf("EXTERIOR_BLIND") > -1) {
enableDevTypeStateReport = true;
sendGoogleStateUpdate = true;
}
Expand Down Expand Up @@ -367,7 +367,7 @@ const sendAlexaState = async(user, device) => {
enableDevTypeStateReport = true;
sendGoogleStateUpdate = true;
}
else if (device.displayCategories.indexOf("EXTERNAL_BLIND") > -1) {
else if (device.displayCategories.indexOf("EXTERIOR_BLIND") > -1) {
enableDevTypeStateReport = true;
sendGoogleStateUpdate = true;
}
Expand Down

0 comments on commit 10d895d

Please sign in to comment.