diff --git a/framework/core/js/src/forum/components/NotificationList.js b/framework/core/js/src/forum/components/NotificationList.js index eebd8032b..640841c0a 100644 --- a/framework/core/js/src/forum/components/NotificationList.js +++ b/framework/core/js/src/forum/components/NotificationList.js @@ -178,7 +178,8 @@ export default class NotificationList extends Component { */ parseResults(results) { app.cache.notifications = app.cache.notifications || []; - app.cache.notifications.push(results); + + if (results.length) app.cache.notifications.push(results); this.moreResults = !!results.payload.links.next;