Fix issue while fetching timelines for tag page
This commit is contained in:
parent
fafe258f2b
commit
19870c0b6d
@ -34,18 +34,24 @@ const api = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
startFetching (store, timeline) {
|
startFetching (store, payload) {
|
||||||
let userId = false
|
let userId = false
|
||||||
|
let timeline = 'friends'
|
||||||
|
let tag = false
|
||||||
|
|
||||||
// This is for user timelines
|
if (isArray(payload)) {
|
||||||
if (isArray(timeline)) {
|
// For user timelines
|
||||||
userId = timeline[1]
|
timeline = payload[0]
|
||||||
timeline = timeline[0]
|
userId = payload[1]
|
||||||
|
} else if (payload.tag) {
|
||||||
|
// For tag timelines
|
||||||
|
timeline = 'tag'
|
||||||
|
tag = payload.tag
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't start fetching if we already are.
|
// Don't start fetching if we already are.
|
||||||
if (!store.state.fetchers[timeline]) {
|
if (!store.state.fetchers[timeline]) {
|
||||||
const fetcher = store.state.backendInteractor.startFetching({timeline, store, userId})
|
const fetcher = store.state.backendInteractor.startFetching({timeline, store, userId, tag})
|
||||||
store.commit('addFetcher', {timeline, fetcher})
|
store.commit('addFetcher', {timeline, fetcher})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user