From f6d0916315775f6e100d59ba29ae5f5b5ef76626 Mon Sep 17 00:00:00 2001 From: Philip Abbey Date: Fri, 18 Jul 2025 20:46:49 +0100 Subject: [PATCH] Update HomeAssistantTapMenuItem.mc Requirement for use of the PIN was not being correctly extracted from the options. Goes to show why the security features should not be relied on! A recent compilation fix created this breaking change. --- source/HomeAssistantTapMenuItem.mc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/HomeAssistantTapMenuItem.mc b/source/HomeAssistantTapMenuItem.mc index 79a61ea..88aabaa 100644 --- a/source/HomeAssistantTapMenuItem.mc +++ b/source/HomeAssistantTapMenuItem.mc @@ -69,7 +69,7 @@ class HomeAssistantTapMenuItem extends HomeAssistantMenuItem { mData = data; mExit = options.get(:exit); mConfirm = options.get(:confirm); - mPin = options.get(:acospin); + mPin = options.get(:pin); } //! Call a Home Assistant service only after checks have been done for confirmation or PIN entry.