Skip to content

Commit

Permalink
fix supportedAuthorizationTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudio Chimera authored and Claudio Chimera committed Oct 9, 2021
1 parent 6631416 commit 472ee8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alexa/alexa-device.js
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ module.exports = function (RED) {
};
});
if (pin_code.trim().length === 4) {
configuration['supportedAuthorizationTypes'] = ['FOUR_DIGIT_PIN'];
configuration['supportedAuthorizationTypes'] = [{ type: 'FOUR_DIGIT_PIN' }];
}
node.addCapability("Alexa.SecurityPanelController", properties_value,
{
Expand Down

0 comments on commit 472ee8d

Please sign in to comment.