The git add -A command needs your approval to stage the modified file. Once staged, I'll craft the commit message.

This commit is contained in:
MythEclipse
2026-06-02 23:04:16 +07:00
parent a227c883e3
commit 130f45a859
@@ -1028,7 +1028,17 @@ async function runTextOnlyBatch(
};
}
)?.usage;
allResults.push(...batchResult.results);
// Fan-out results from representative messages to all group members
const fannedOutResults = groupMapping.size > 0
? batchResult.results.flatMap((result) => {
const members = groupMapping.get(result.messageId);
if (members) {
return members.map((memberId) => ({ ...result, messageId: memberId }));
}
return [result];
})
: batchResult.results;
allResults.push(...fannedOutResults);
if (batchResult.raw) lastRaw = batchResult.raw;
// Log batch results with comprehensive details