summaryrefslogtreecommitdiffstats
path: root/api/user.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/user.go')
-rw-r--r--api/user.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/api/user.go b/api/user.go
index 1331bd3da..de4242f24 100644
--- a/api/user.go
+++ b/api/user.go
@@ -764,10 +764,7 @@ func Logout(c *Context, w http.ResponseWriter, r *http.Request) {
c.LogAudit("")
c.RemoveSessionCookie(w, r)
if c.Session.Id != "" {
- if result := <-Srv.Store.Session().Remove(c.Session.Id); result.Err != nil {
- c.Err = result.Err
- return
- }
+ RevokeSessionById(c, c.Session.Id)
}
}