From 7ab3991c246a59ac5cc995286c8e0745b8d558e6 Mon Sep 17 00:00:00 2001 From: Vivien Nicolas Date: Mon, 23 Jan 2023 11:39:29 +0100 Subject: [PATCH] [placeholder] The post command callback does not fired anymore after #20357 --- 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);