metheus-governance-mcp-cli 0.2.185 → 0.2.186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.mjs +3 -1
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -2172,7 +2172,9 @@ function collectBotRunnerConversationSessionFacts(routeRaw, conversationIDRaw) {
|
|
|
2172
2172
|
}
|
|
2173
2173
|
const candidateRoute = normalizeRunnerRoute(candidateRouteRaw);
|
|
2174
2174
|
const routeKey = runnerRouteKey(candidateRoute);
|
|
2175
|
-
const session = safeObject(
|
|
2175
|
+
const session = safeObject(
|
|
2176
|
+
safeObject(safeObject(safeObject(runnerState.routes)[routeKey]).conversation_sessions)[conversationID],
|
|
2177
|
+
);
|
|
2176
2178
|
if (!Object.keys(session).length) {
|
|
2177
2179
|
continue;
|
|
2178
2180
|
}
|