separation support

This commit is contained in:
Henry Jameson 2026-01-29 20:33:59 +02:00
commit e554eeeef6
30 changed files with 92 additions and 102 deletions

View file

@ -238,7 +238,7 @@ const api = {
) {
if (
timeline === 'favourites' &&
!useInstanceStore().pleromaPublicFavouritesAvailable
!useInstanceStore().featureSet.pleromaPublicFavouritesAvailable
)
return
if (store.state.fetchers[timeline]) return
@ -323,7 +323,7 @@ const api = {
// Bookmark folders
startFetchingBookmarkFolders(store) {
if (store.state.fetchers.bookmarkFolders) return
if (!useInstanceStore().pleromaBookmarkFoldersAvailable) return
if (!useInstanceStore().featureSet.pleromaBookmarkFoldersAvailable) return
const fetcher =
store.state.backendInteractor.startFetchingBookmarkFolders({ store })
store.commit('addFetcher', { fetcherName: 'bookmarkFolders', fetcher })

View file

@ -763,7 +763,9 @@ const users = {
// Start fetching notifications
dispatch('startFetchingNotifications')
if (useInstanceStore().pleromaChatMessagesAvailable) {
if (
useInstanceStore().featureSet.pleromaChatMessagesAvailable
) {
// Start fetching chats
dispatch('startFetchingChats')
}