From 2e22e3014d031320c8f020e1d5091eefb1b774c9 Mon Sep 17 00:00:00 2001 From: mahesh Date: Wed, 31 Dec 2025 16:01:02 +0530 Subject: [PATCH] Fix: Incorrect Software Diagnostic cluster id while checking attribute enable Fixes: https://github.com/espressif/esp-matter/issues/1634 --- .../clusters/software_diagnostics_integration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_matter/data_model_provider/clusters/software_diagnostics_integration.cpp b/components/esp_matter/data_model_provider/clusters/software_diagnostics_integration.cpp index c2698a035..01010ebcd 100644 --- a/components/esp_matter/data_model_provider/clusters/software_diagnostics_integration.cpp +++ b/components/esp_matter/data_model_provider/clusters/software_diagnostics_integration.cpp @@ -30,7 +30,7 @@ LazyRegisteredServerCluster gServer; bool IsAttributeEnabled(EndpointId endpointId, AttributeId attributeId) { - return endpoint::is_attribute_enabled(endpointId, GeneralDiagnostics::Id, attributeId); + return endpoint::is_attribute_enabled(endpointId, SoftwareDiagnostics::Id, attributeId); } } // namespace