Skip to content

Commit 3080f08

Browse files
committed
Fix CI
1 parent b9e2393 commit 3080f08

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/app/CommandSender.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,7 @@ class CommandSender final : public Messaging::ExchangeDelegate
409409
CHIP_ERROR AddRequestData(const CommandPathParams & aCommandPath, const CommandDataT & aData)
410410
{
411411
AddRequestDataParameters addRequestDataParams;
412-
DataModel::EncodableType<CommandDataT> encoder(aData);
413-
return AddRequestData(aCommandPath, encoder, addRequestDataParams);
412+
return AddRequestData(aCommandPath, aData, addRequestDataParams);
414413
}
415414

416415
template <typename CommandDataT>

0 commit comments

Comments
 (0)