diff --git a/.changeset/wise-suits-protect.md b/.changeset/wise-suits-protect.md new file mode 100644 index 0000000000..b1b26e4bf6 --- /dev/null +++ b/.changeset/wise-suits-protect.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-notifications-backend': patch +--- + +Make sure to post process broadcast notifications even without signals support diff --git a/plugins/notifications-backend/src/service/router.ts b/plugins/notifications-backend/src/service/router.ts index 368974b6ca..28defa9081 100644 --- a/plugins/notifications-backend/src/service/router.ts +++ b/plugins/notifications-backend/src/service/router.ts @@ -470,8 +470,8 @@ export async function createRouter( }, channel: 'notifications', }); - postProcessNotification(ret, opts); } + postProcessNotification(ret, opts); return notification; };