Merge branch 'fix_group_provider_issue' into 'main'

compenents/esp_matter: Add group provider implementation which was accidentally deleted

See merge request app-frameworks/esp-matter!1224
This commit is contained in:
Hrishikesh Dhayagude
2025-08-20 16:02:38 +08:00
@@ -358,9 +358,6 @@ static esp_err_t disable(endpoint_t *endpoint)
current_endpoint->identify = NULL;
}
// resize the group data provider to match the new endpoint count
resize_group_data_provider();
return ESP_OK;
}
@@ -570,6 +567,10 @@ esp_err_t enable(endpoint_t *endpoint)
lock::chip_stack_unlock();
}
ESP_LOGI(TAG, "Dynamic endpoint %" PRIu16 " added", current_endpoint->endpoint_id);
// resize the group data provider to match the new endpoint count
resize_group_data_provider();
return err;
cleanup: