aboutsummaryrefslogtreecommitdiff
path: root/routers/api/v1/user/user.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/api/v1/user/user.go')
-rw-r--r--routers/api/v1/user/user.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/api/v1/user/user.go b/routers/api/v1/user/user.go
index d797c650..11c3b8bb 100644
--- a/routers/api/v1/user/user.go
+++ b/routers/api/v1/user/user.go
@@ -41,7 +41,7 @@ func Search(ctx *context.APIContext) {
AvatarUrl: users[i].AvatarLink(),
FullName: users[i].FullName,
}
- if ctx.IsSigned {
+ if ctx.IsLogged {
results[i].Email = users[i].Email
}
}
@@ -64,7 +64,7 @@ func GetInfo(ctx *context.APIContext) {
}
// Hide user e-mail when API caller isn't signed in.
- if !ctx.IsSigned {
+ if !ctx.IsLogged {
u.Email = ""
}
ctx.JSON(200, u.APIFormat())