From ae12ec1797e046371482fb2f4f81e4e40fe73fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Dvo=C5=99=C3=A1k?= <150935816+Dvorinka@users.noreply.github.com> Date: Fri, 23 May 2025 11:35:19 +0200 Subject: [PATCH] Add files via upload --- kontakt/contact-scrape.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {