diff --git a/packages/plugins/@nocobase/plugin-notification-in-app-message/src/client/observables/sse.ts b/packages/plugins/@nocobase/plugin-notification-in-app-message/src/client/observables/sse.ts index c718ad6209..0b9f6b706b 100644 --- a/packages/plugins/@nocobase/plugin-notification-in-app-message/src/client/observables/sse.ts +++ b/packages/plugins/@nocobase/plugin-notification-in-app-message/src/client/observables/sse.ts @@ -54,6 +54,7 @@ export const startMsgSSEStreamWithRetry: () => () => void = () => { }, responseType: 'stream', adapter: 'fetch', + skipNotify: (error) => (!error || !error.message ? true : false), }); if (!res?.data) return; const stream = res.data;