Merge branch 'akkoma-support-part-2' into 'develop'

fix infinite loop

See merge request pleroma/pleroma-fe!2192
This commit is contained in:
HJ 2025-06-29 00:19:19 +00:00
commit 389ca8e151

View file

@ -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