codex: fix lint failure on PR #26259

This commit is contained in:
Andrei Eternal
2026-06-03 15:30:21 -07:00
parent 63aa882b8f
commit 0afac7e7f4

View File

@@ -55,7 +55,11 @@ pub(crate) async fn run(
shell: &CommandShell,
request: InterruptRequest,
) -> InterruptOutcome {
let matched = dispatcher::select_handlers(handlers, HookEventName::Interrupt, None);
let matched = dispatcher::select_handlers(
handlers,
HookEventName::Interrupt,
/*matcher_input*/ None,
);
if matched.is_empty() {
return InterruptOutcome::default();
}