Actually apply hacky deduplication for DM participants

This commit is contained in:
Tulir Asokan 2024-02-29 17:25:51 +02:00
parent 173644423c
commit d35936e857

View file

@ -1303,6 +1303,7 @@ func (portal *Portal) SyncParticipants(ctx context.Context, source *User, metada
Any("participants", filteredParticipants). Any("participants", filteredParticipants).
Any("chosen_participant", bestParticipant). Any("chosen_participant", bestParticipant).
Msg("Applied hacky deduplication to DM participants with same contact ID") Msg("Applied hacky deduplication to DM participants with same contact ID")
filteredParticipants = []*gmproto.Participant{bestParticipant}
} }
for _, participant := range filteredParticipants { for _, participant := range filteredParticipants {
puppet := source.GetPuppetByID(participant.ID.ParticipantID, participant.ID.Number) puppet := source.GetPuppetByID(participant.ID.ParticipantID, participant.ID.Number)