Compare commits

..

No commits in common. "940f190eac451c7596612bea31d55e84a47055b7" and "6753de29864c1c7eb82fced4e9e89a8d69654486" have entirely different histories.

View file

@ -40,7 +40,7 @@ const fetchAndUpdate = ({
statusId = false,
bookmarkFolderId = false,
tag = false,
maxId,
until,
sinceId,
}) => {
const args = { timeline, credentials }
@ -51,7 +51,7 @@ const fetchAndUpdate = ({
const loggedIn = !!rootState.users.currentUser
if (older) {
args.maxId = maxId || timelineData.minId
args.until = until || timelineData.minId
} else {
if (sinceId === undefined) {
args.sinceId = timelineData.maxId
@ -119,11 +119,11 @@ const startFetching = ({
timeline = 'friends',
credentials,
store,
userId,
listId,
statusId,
bookmarkFolderId,
tag,
userId = false,
listId = false,
statusId = false,
bookmarkFolderId = false,
tag = false,
}) => {
const rootState = store.rootState || store.state
const timelineData = rootState.statuses.timelines[camelCase(timeline)]