We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23bd27f commit c52a7e4Copy full SHA for c52a7e4
1 file changed
lib/fetch-wrapper/index.ts
@@ -81,7 +81,7 @@ export function installFetchWrapper(
81
82
// Run deduplication after handlers have populated toolParameters cache
83
const sessionId = state.lastSeenSessionId
84
- if (sessionId && state.toolParameters.size > 0) {
+ if (sessionId && state.toolParameters.size > 1) {
85
const toolIds = Array.from(state.toolParameters.keys())
86
const alreadyPruned = state.prunedIds.get(sessionId) ?? []
87
const alreadyPrunedLower = new Set(alreadyPruned.map(id => id.toLowerCase()))
0 commit comments