From 7904f184e66f818f6a45c23d1fbbdb6d88b053d2 Mon Sep 17 00:00:00 2001 From: Vivien Nicolas Date: Mon, 23 Jan 2023 16:02:03 +0100 Subject: [PATCH] [placeholder] The post command callback does not fired anymore after #20357 (#24587) --- examples/placeholder/linux/include/MatterCallbacks.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/placeholder/linux/include/MatterCallbacks.h b/examples/placeholder/linux/include/MatterCallbacks.h index 210dd2b267ee72..a21a3b8bdc9ceb 100644 --- a/examples/placeholder/linux/include/MatterCallbacks.h +++ b/examples/placeholder/linux/include/MatterCallbacks.h @@ -52,7 +52,8 @@ TestCommand * GetTargetTest() return test.get(); } -void MatterPostCommandReceivedCallback(const chip::app::ConcreteCommandPath & commandPath) +void MatterPostCommandReceivedCallback(const chip::app::ConcreteCommandPath & commandPath, + const chip::Access::SubjectDescriptor & subjectDescriptor) { auto test = GetTargetTest(); VerifyOrReturn(test != nullptr && test->isRunning);