From cf94f2763dc352fa45c18f5deefc025c49060e97 Mon Sep 17 00:00:00 2001 From: Steven Brown Date: Mon, 27 Apr 2026 12:21:26 -0600 Subject: [PATCH] Leading slash in custom_quirks_path caused zha to fail startup --- HOME_ASSISTANT.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HOME_ASSISTANT.md b/HOME_ASSISTANT.md index f87904a..7d6ad3b 100644 --- a/HOME_ASSISTANT.md +++ b/HOME_ASSISTANT.md @@ -137,11 +137,11 @@ ANALOG_OUTPUT_CLUSTER_ID = 0x000D ```yaml zha: - custom_quirks_path: /config/custom_zha_quirks/ + custom_quirks_path: config/custom_zha_quirks/ enable_quirks: true ``` - > **Note:** Use `/config/custom_zha_quirks/` exactly as shown -- this path works on **both** HA 2025.x and 2026.x, even though the File editor in 2026.x shows the root as `/homeassistant/`. The trailing `/` is required on HA 2026.x. **Do not** change `/config/` to `/homeassistant/` in this setting. + > **Note:** Use `config/custom_zha_quirks/` exactly as shown -- this path works on **both** HA 2025.x and 2026.x, even though the File editor in 2026.x shows the root as `/homeassistant/`. The trailing `/` is required on HA 2026.x. **Do not** change `/config/` to `/homeassistant/` in this setting. If you already have a `zha:` section, just add the two lines underneath it.