From a9324077480724662080f83b8ff78d25f84230ee Mon Sep 17 00:00:00 2001 From: Matthew Knight Date: Sat, 14 Feb 2026 02:23:27 -0800 Subject: [PATCH] Display names some more --- internal/forgejo/client.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/forgejo/client.go b/internal/forgejo/client.go index 8671d2e..4b7a647 100644 --- a/internal/forgejo/client.go +++ b/internal/forgejo/client.go @@ -76,7 +76,8 @@ func (u APIUser) DisplayName() string { if u.FullName != "" { return u.FullName } - if u.Email != "" { + // Ignore Forgejo's privacy placeholder emails + if u.Email != "" && !strings.HasSuffix(u.Email, "@noreply.localhost") { return u.Email } return u.Login