MCPcopy Index your code
hub / github.com/claude-code-best/claude-code / shouldDropMutedMessage

Function shouldDropMutedMessage

src/hooks/useMasterMonitor.ts:137–144  ·  view source on GitHub ↗
(
  slaveName: string,
  msgType: string,
)

Source from the content-addressed store, hash-verified

135 * useMasterMonitor's inline handler — keeps the two gates in sync.
136 */
137export function shouldDropMutedMessage(
138 slaveName: string,
139 msgType: string,
140): boolean {
141 if (hasSendOverride(slaveName)) return false
142 if (!isMasterPipeMuted(slaveName)) return false
143 return MUTED_DROPPABLE_TYPES.has(msgType)
144}
145
146function pipeMessageToSessionEntry(
147 slaveName: string,

Callers 1

handlerFunction · 0.85

Calls 3

hasSendOverrideFunction · 0.85
isMasterPipeMutedFunction · 0.85
hasMethod · 0.45

Tested by

no test coverage detected