Merge pull request #29273 from drodil/post_process_broadcast

fix(notifications): post process broadcast notification even without signals
This commit is contained in:
Fredrik Adelöw
2025-03-18 12:14:01 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-notifications-backend': patch
---
Make sure to post process broadcast notifications even without signals support
@@ -470,8 +470,8 @@ export async function createRouter(
},
channel: 'notifications',
});
postProcessNotification(ret, opts);
}
postProcessNotification(ret, opts);
return notification;
};