logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 7978ffeb1d20c3b2568ecd351747229a2548e4d3
parent: f7e9f17e4c895d4a5f8aa15db674fd714396b334
Author: Roger Braun <roger@rogerbraun.net>
Date:   Thu,  8 Dec 2016 12:45:09 +0100

Check all statuses in timeline for old retweets.

This will fix the problem of retweets showing up again and again.

Diffstat:

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

diff --git a/src/modules/statuses.js b/src/modules/statuses.js @@ -203,7 +203,7 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us let retweet // If the retweeted status is already there, don't add the retweet // to the timeline. - if (timeline && find(timelineObject.visibleStatuses, {id: retweetedStatus.id})) { + if (timeline && find(timelineObject.statuses, {id: retweetedStatus.id})) { // Already have it visible, don't add to timeline, don't show. retweet = addStatus(status, false, false) } else {