From 114257359ca846c38af5bfa31e9b78f5f935d3ed Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Sun, 29 Jun 2025 03:18:09 +0300 Subject: [PATCH] fix infinite loop --- .../notifications_fetcher/notifications_fetcher.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/notifications_fetcher/notifications_fetcher.service.js b/src/services/notifications_fetcher/notifications_fetcher.service.js index 2526141c9..676830733 100644 --- a/src/services/notifications_fetcher/notifications_fetcher.service.js +++ b/src/services/notifications_fetcher/notifications_fetcher.service.js @@ -81,7 +81,7 @@ const fetchNotifications = ({ store, args, older }) => { return apiService.fetchTimeline(args) .then((response) => { if (response.errors) { - if (response.status === 400) { + if (response.status === 400 && mastoApiNotificationTypes.has('status')) { store.dispatch('setInstanceOption', { name: 'statusNotificationTypeAvailable', value: false