Handle too many mentions error in inbox without retry

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-12 05:15:36 +00:00
parent 4a9d342d50
commit 7d943a3059

View File

@@ -235,6 +235,9 @@ export class InboxProcessorService implements OnApplicationShutdown {
if (e.id === 'd450b8a9-48e4-4dab-ae36-f4db763fda7c') { // invalid Note if (e.id === 'd450b8a9-48e4-4dab-ae36-f4db763fda7c') { // invalid Note
return e.message; return e.message;
} }
if (e.id === '9f466dab-c856-48cd-9e65-ff90ff750580') {
return 'note contains too many mentions';
}
} }
throw e; throw e;
} }