Merge branch 'fix/fetching-error-by-tag' into 'develop'

#402 Fix fetching error by tag

See merge request pleroma/pleroma-fe!622
This commit is contained in:
Shpuld Shpludson 2019-03-02 15:48:54 +00:00
commit 6f903016a4
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ const backendInteractorService = (credentials) => {
return apiService.denyUser({credentials, id})
}
const startFetching = ({timeline, store, userId = false}) => {
return timelineFetcherService.startFetching({timeline, store, credentials, userId})
const startFetching = ({timeline, store, userId = false, tag}) => {
return timelineFetcherService.startFetching({timeline, store, credentials, userId, tag})
}
const setUserMute = ({id, muted = true}) => {