From d0e91abe5a9f3e5e776fe29d892aa51a1c7a4773 Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Mon, 5 Dec 2016 13:14:40 +0100 Subject: Remove wrong rights check. --- src/components/status/status.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/components/status/status.js b/src/components/status/status.js index 8b2561cf..3245d98b 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -22,7 +22,7 @@ const Status = { return !!this.$store.state.users.currentUser }, deleted () { return this.statusoid.deleted }, - canDelete () { return this.statusoid.user.rights.delete_others_notice || this.statusoid.user.id == this.$store.state.users.currentUser.id } + canDelete () { return this.statusoid.user.id === this.$store.state.users.currentUser.id } }, components: { Attachment, -- cgit v1.2.3-70-g09d2 From 7978ffeb1d20c3b2568ecd351747229a2548e4d3 Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Thu, 8 Dec 2016 12:45:09 +0100 Subject: Check all statuses in timeline for old retweets. This will fix the problem of retweets showing up again and again. --- src/modules/statuses.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/modules/statuses.js b/src/modules/statuses.js index aab198d8..1db1f1b0 100644 --- 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 { -- cgit v1.2.3-70-g09d2