Merge branch 'from/develop/tusooa/fix-fetchTimeline' into 'develop'

Fix fetchTimeline error

See merge request pleroma/pleroma-fe!1688
This commit is contained in:
HJ 2022-11-29 14:56:11 +00:00
commit e41edd1bbf
2 changed files with 2 additions and 2 deletions

View File

@ -216,7 +216,7 @@ const api = {
if (!fetcher) return
store.commit('removeFetcher', { fetcherName: timeline, fetcher })
},
fetchTimeline (store, timeline, { ...rest }) {
fetchTimeline (store, { timeline, ...rest }) {
store.state.backendInteractor.fetchTimeline({
store,
timeline,

View File

@ -588,7 +588,7 @@ const users = {
}
if (store.getters.mergedConfig.useStreamingApi) {
store.dispatch('fetchTimeline', 'friends', { since: null })
store.dispatch('fetchTimeline', { timeline: 'friends', since: null })
store.dispatch('fetchNotifications', { since: null })
store.dispatch('enableMastoSockets', true).catch((error) => {
console.error('Failed initializing MastoAPI Streaming socket', error)