service-area-server.cpp remove check for CurrentArea == NULL when executing skip command · Issue #34934 · project-chip/connectedhomeip · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is no longer a cluster requirement, the check should not be in the common SDK code:
void Instance::HandleSkipCurrentAreaCmd change to void Instance::HandleSkipAreaCmd
Delete the following check:
// If the CurrentArea attribute is null, the status should be set to InvalidInMode.
// If the Status field is not set to Success, or InvalidAreaList, the StatusText field SHALL include a vendor defined error
// description.
if (mCurrentArea.IsNull())
{
exitResponse(SkipAreaStatus::kInvalidInMode, "Current Area attribute is null"_span);
return;
}
The text was updated successfully, but these errors were encountered:
This is no longer a cluster requirement, the check should not be in the common SDK code:
void Instance::HandleSkipCurrentAreaCmd change to void Instance::HandleSkipAreaCmd
Delete the following check:
The text was updated successfully, but these errors were encountered: