1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-07 10:35:48 +00:00

Add visible check.

This commit is contained in:
KN4CK3R 2022-04-22 13:55:58 +00:00 committed by Anthony Wang
parent 523ca3d89b
commit 0d120f8a8d
No known key found for this signature in database
GPG Key ID: BC96B00AEC5F2D76

View File

@ -85,7 +85,10 @@ func WebfingerQuery(ctx *context.Context) {
return
}
// Should we check IsUserVisibleToViewer here?
if !user_model.IsUserVisibleToViewer(u, ctx.Doer) {
ctx.Error(http.StatusNotFound)
return
}
aliases := make([]string, 0, 1)
if !u.KeepEmailPrivate {