Merge branch 'develop' into fix/refactoring_status_delete

This commit is contained in:
Jiayi Zheng 2016-12-08 20:29:06 +01:00
commit ed0d02b0ad
2 changed files with 4 additions and 1 deletions

View File

@ -18,3 +18,6 @@ build:
script:
- npm install
- npm run build
artifacts:
paths:
- dist/

View File

@ -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 {