diff --git a/platform/contact.go b/platform/contact.go index 111a2e01..946bbf35 100644 --- a/platform/contact.go +++ b/platform/contact.go @@ -30,6 +30,10 @@ func ContactsForOrganization(ctx context.Context, org_id int32) (results []types results = make([]types.Contact, 0) for _, row := range rows { + // Exclude the magic Nidus contact + if row.ID == 1 { + continue + } contact_emails := contact_emails_by_contact_id[int64(row.ID)] emails := make([]string, len(contact_emails)) for i, e := range contact_emails {