Fix an error

This commit is contained in:
Alessio 2022-01-30 15:44:26 -08:00
parent 3046dd56f4
commit f0b1acd595

View File

@ -45,6 +45,4 @@ func (t1 *TweetTrove) MergeWith(t2 TweetTrove) {
for id, val := range t2.Retweets { for id, val := range t2.Retweets {
t1.Retweets[id] = val t1.Retweets[id] = val
} }
t1.TombstoneUsers = append(t1.TombstoneUsers, t2.TombstoneUsers...)
} }