diff --git a/src/stores/users.js b/src/stores/users.js index 2eeb31b6e..b487eab46 100644 --- a/src/stores/users.js +++ b/src/stores/users.js @@ -788,7 +788,9 @@ export const useUsersStore = defineStore('users', { useListsStore().startFetching() useBookmarkFoldersStore().startFetching() useChatsStore().startFetching() - useFollowRequestsStore().startFetching() + if (user.locked) { + useFollowRequestsStore().startFetching() + } }) .finally(() => { useNotificationsStore().resume()