diff --git a/kontakt/contact-scrape.go b/kontakt/contact-scrape.go index fb3c63c..3f5c600 100644 --- a/kontakt/contact-scrape.go +++ b/kontakt/contact-scrape.go @@ -303,7 +303,7 @@ func processContacts(contacts []Contact) *ContactData { for _, contact := range contacts { // Trim whitespace and check for "InternĂ­" - if strings.TrimSpace(contact.Name) == "InternĂ­" { + if strings.TrimSpace(contact.Position) == "InternĂ­" { contact.Internal = true data.InternalContacts = append(data.InternalContacts, contact) } else {