From 36cb7c1aa440df979ccaedce0263896bceb1b8da Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 31 Aug 2026 19:15:55 +0300 Subject: [PATCH] undo debug --- src/stores/users.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/stores/users.js b/src/stores/users.js index 71a9ddc94..78527b4c5 100644 --- a/src/stores/users.js +++ b/src/stores/users.js @@ -679,10 +679,10 @@ export const useUsersStore = defineStore('users', { useListsStore().startFetching() useBookmarkFoldersStore().startFetching() - // if (user.locked) { - dispatch('startFetchingFollowRequests') - useFollowRequestsStore().startFetching() - // } + if (user.locked) { + dispatch('startFetchingFollowRequests') + useFollowRequestsStore().startFetching() + } if (useMergedConfigStore().mergedConfig.useStreamingApi) { useStreamingStore().initSocket(true) @@ -726,9 +726,9 @@ export const useUsersStore = defineStore('users', { useListsStore().stopFetching() useBookmarkFoldersStore().stopFetching() useChatsStore().stopFetching() - // if (this.currentUser.locked) { - useFollowRequestsStore().stopFetching() - // } + if (this.currentUser.locked) { + useFollowRequestsStore().stopFetching() + } store?.dispatch('stopFetchingFollowRequests')