Matrix: finish main sync follow-ups

This commit is contained in:
Gustavo Madeira Santana 2026-03-09 06:30:32 -04:00
parent 723e347294
commit 229a897b93
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View File

@ -353,6 +353,7 @@
"@mariozechner/pi-ai": "0.57.1",
"@mariozechner/pi-coding-agent": "0.57.1",
"@mariozechner/pi-tui": "0.57.1",
"@matrix-org/matrix-sdk-crypto-nodejs": "^0.4.0",
"@mozilla/readability": "^0.6.0",
"@sinclair/typebox": "0.34.48",
"@slack/bolt": "^4.6.0",

View File

@ -139,7 +139,11 @@ export async function handleSubagentsFocusAction(
return stopWithText(`⚠️ ${label} bindings are unavailable for this account.`);
}
const focusTarget = await resolveFocusTargetSession({ runs, token });
const focusTarget = await resolveFocusTargetSession({
cfg: params.cfg,
runs,
token,
});
if (!focusTarget) {
return stopWithText(`⚠️ Unable to resolve focus target: ${token}`);
}