Add files via upload

This commit is contained in:
Tomáš Dvořák
2025-05-23 10:04:52 +02:00
committed by GitHub
parent d46f050f2d
commit 099043a21b
+2 -2
View File
@@ -294,8 +294,8 @@ func processContacts(contacts []Contact) *ContactData {
data.InternalContacts = []Contact{}
for _, contact := range contacts {
// Mark as internal if name is exactly "Interní"
if contact.Name == "Interní" {
// Trim whitespace and check for "Interní"
if strings.TrimSpace(contact.Name) == "Interní" {
contact.Internal = true
data.InternalContacts = append(data.InternalContacts, contact)
} else {