actions/timelines: fix since_id
This commit is contained in:
parent
b96148c9a4
commit
61968f3b84
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ const expandTimeline = (timelineId: string, path: string, params: Record<string,
|
|||
}
|
||||
|
||||
if (!params.max_id && !params.pinned && (timeline.items || ImmutableOrderedSet()).size > 0) {
|
||||
params.since_id = timeline.items || 0;
|
||||
params.since_id = timeline.getIn(['items', 0]);
|
||||
}
|
||||
|
||||
const isLoadingRecent = !!params.since_id;
|
||||
|
|
Loading…
Reference in a new issue