From 031cb409040ca2b89399a4f1ed91b27d6e36c604 Mon Sep 17 00:00:00 2001 From: smitten Date: Mon, 7 Aug 2023 08:48:42 -0400 Subject: [PATCH] Add params to bound fetcher --- src/services/timeline_fetcher/timeline_fetcher.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/timeline_fetcher/timeline_fetcher.service.js b/src/services/timeline_fetcher/timeline_fetcher.service.js index 3b751255..8bede4e3 100644 --- a/src/services/timeline_fetcher/timeline_fetcher.service.js +++ b/src/services/timeline_fetcher/timeline_fetcher.service.js @@ -87,7 +87,7 @@ const startFetching = ({ timeline = 'friends', credentials, store, userId = fals timelineData.listId = listId fetchAndUpdate({ timeline, credentials, store, showImmediately, userId, listId, tag, params }) const boundFetchAndUpdate = () => - fetchAndUpdate({ timeline, credentials, store, userId, listId, tag }) + fetchAndUpdate({ timeline, credentials, store, userId, listId, tag, params }) return promiseInterval(boundFetchAndUpdate, 20000) } const timelineFetcher = {