diff --git a/src/auto-reply/reply/dispatch-from-config.ts b/src/auto-reply/reply/dispatch-from-config.ts index 6b4098bf6cc..6b5f9977134 100644 --- a/src/auto-reply/reply/dispatch-from-config.ts +++ b/src/auto-reply/reply/dispatch-from-config.ts @@ -785,7 +785,7 @@ export function getDispatcherFinalOutcomeCounts(dispatcher: DispatcherOutcomeCou } { return { cancelled: dispatcher.getCancelledCounts?.().final ?? 0, - failed: dispatcher.getFailedCounts?.().final ?? 0, + failed: readDispatcherFailedCounts(dispatcher).final, }; }