logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: df366a586d6549b41d5537c57eb51c5f0f54a641
parent: 3c2931529ef14c3796e9afb21180392a0a7d9725
Author: Shpuld Shpludson <shp@cock.li>
Date:   Mon,  1 Apr 2019 19:33:45 +0000

Merge branch '471-timeline-since-id' into 'develop'

#471 - fix timeline fetch with since_id

Closes #471

See merge request pleroma/pleroma-fe!722

Diffstat:

Msrc/modules/statuses.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/statuses.js b/src/modules/statuses.js @@ -123,7 +123,7 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us const maxNew = statuses.length > 0 ? maxBy(statuses, 'id').id : 0 const minNew = statuses.length > 0 ? minBy(statuses, 'id').id : 0 - const newer = timeline && maxNew > timelineObject.maxId && statuses.length > 0 + const newer = timeline && (maxNew > timelineObject.maxId || timelineObject.maxId === 0) && statuses.length > 0 const older = timeline && (minNew < timelineObject.minId || timelineObject.minId === 0) && statuses.length > 0 if (!noIdUpdate && newer) {