Further improve hacky deduplication algorithm
This commit is contained in:
parent
c03191856c
commit
94e59bbb3f
1 changed files with 5 additions and 1 deletions
|
@ -1288,7 +1288,11 @@ func (portal *Portal) SyncParticipants(ctx context.Context, source *User, metada
|
||||||
var bestParticipant *gmproto.Participant
|
var bestParticipant *gmproto.Participant
|
||||||
var foundMultiple bool
|
var foundMultiple bool
|
||||||
for _, participant := range filteredParticipants {
|
for _, participant := range filteredParticipants {
|
||||||
if participant.GetSomeInt() == 1 && (participant.GetFullName() == metadata.GetName() || participant.GetFormattedNumber() == metadata.GetName()) {
|
if participant.GetSomeInt() == 1 &&
|
||||||
|
// TODO this name check may be unnecessary (and is even more hacky)
|
||||||
|
(participant.GetFullName() == metadata.GetName() ||
|
||||||
|
participant.GetFormattedNumber() == metadata.GetName() ||
|
||||||
|
strings.TrimPrefix(participant.GetID().GetNumber(), "+") == strings.TrimPrefix(metadata.GetName(), "+")) {
|
||||||
if bestParticipant != nil {
|
if bestParticipant != nil {
|
||||||
foundMultiple = true
|
foundMultiple = true
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue