Fix fetching error by tag

This commit is contained in:
jasper 2019-02-27 18:14:42 -08:00
parent d5348c13ff
commit 4d026baf17
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 = false}) => {
return timelineFetcherService.startFetching({timeline, store, credentials, userId, tag})
}
const setUserMute = ({id, muted = true}) => {