From 7d943a3059e63dafe3e6ea633e79e4b1f1234c7b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 05:15:36 +0000 Subject: [PATCH] Handle too many mentions error in inbox without retry Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> --- packages/backend/src/queue/processors/InboxProcessorService.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/backend/src/queue/processors/InboxProcessorService.ts b/packages/backend/src/queue/processors/InboxProcessorService.ts index 079e014da8..ebe9c3984c 100644 --- a/packages/backend/src/queue/processors/InboxProcessorService.ts +++ b/packages/backend/src/queue/processors/InboxProcessorService.ts @@ -235,6 +235,9 @@ export class InboxProcessorService implements OnApplicationShutdown { if (e.id === 'd450b8a9-48e4-4dab-ae36-f4db763fda7c') { // invalid Note return e.message; } + if (e.id === '9f466dab-c856-48cd-9e65-ff90ff750580') { + return 'note contains too many mentions'; + } } throw e; }