Add space

This commit is contained in:
jasper 2019-04-04 09:06:53 -07:00
parent a1275be4c0
commit 1c04cd2036

View file

@ -13,7 +13,7 @@ const api = {
setBackendInteractor (state, backendInteractor) {
state.backendInteractor = backendInteractor
},
addFetcher (state, {fetcherName, fetcher}) {
addFetcher (state, { fetcherName, fetcher }) {
state.fetchers[fetcherName] = fetcher
},
removeFetcher (state, { fetcherName }) {
@ -33,7 +33,7 @@ const api = {
}
},
actions: {
startFetchingTimeline (store, {timeline = 'friends', tag = false, userId = false}) {
startFetchingTimeline (store, { timeline = 'friends', tag = false, userId = false }) {
// Don't start fetching if we already are.
if (store.state.fetchers[timeline]) return