diff options
| author | marcin mikołajczak <git@mkljczk.pl> | 2024-01-04 22:46:04 +0100 |
|---|---|---|
| committer | marcin mikołajczak <git@mkljczk.pl> | 2024-01-04 22:47:41 +0100 |
| commit | 6c4c8fe51f0e2c4ce55f5915a2bc5434aef5e5e7 (patch) | |
| tree | f2d7ec37fa08d80cb40c842abdbaab94a4c16728 /src/modules | |
| parent | bdf46eca5ae73b0f12b755774cd901854c814522 (diff) | |
Display quotes count on posts and add quotes list page
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/api.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/api.js b/src/modules/api.js index fee584e8..3dbead5b 100644 --- a/src/modules/api.js +++ b/src/modules/api.js @@ -202,12 +202,13 @@ const api = { timeline = 'friends', tag = false, userId = false, - listId = false + listId = false, + statusId = false }) { if (store.state.fetchers[timeline]) return const fetcher = store.state.backendInteractor.startFetchingTimeline({ - timeline, store, userId, listId, tag + timeline, store, userId, listId, statusId, tag }) store.commit('addFetcher', { fetcherName: timeline, fetcher }) }, |
