diff --git a/routers/web/webfinger.go b/routers/web/webfinger.go index c6f915a6e4..3e8f407849 100644 --- a/routers/web/webfinger.go +++ b/routers/web/webfinger.go @@ -90,7 +90,9 @@ func WebfingerQuery(ctx *context.Context) { return } - aliases := make([]string, 0, 1) + aliases := []string{ + u.HTMLURL(), + } if !u.KeepEmailPrivate { aliases = append(aliases, fmt.Sprintf("mailto:%s", u.Email)) }