From 6e6086e2dcaedf55ebf9e3b989787fe2bf5bdccf Mon Sep 17 00:00:00 2001 From: Esko Dijk Date: Mon, 29 Sep 2025 18:08:52 +0200 Subject: [PATCH] [tcat] bugfix to allow repeated commissioning/decommissioning cycles (#11802) --- src/core/meshcop/tcat_agent.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/meshcop/tcat_agent.cpp b/src/core/meshcop/tcat_agent.cpp index 9c4bca43f..a2843f1cf 100644 --- a/src/core/meshcop/tcat_agent.cpp +++ b/src/core/meshcop/tcat_agent.cpp @@ -709,6 +709,8 @@ Error TcatAgent::HandleDecommission(void) } #endif + mIsCommissioned = false; // enable repeated commissioning/decommissioning in a session + exit: return error; }