forked from AkkomaGang/akkoma-fe
Fix fetching error by tag
This commit is contained in:
parent
d5348c13ff
commit
4d026baf17
1 changed files with 2 additions and 2 deletions
|
@ -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}) => {
|
||||
|
|
Loading…
Reference in a new issue