summaryrefslogtreecommitdiffstats
path: root/routers/web/user/auth_openid.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/web/user/auth_openid.go')
-rw-r--r--routers/web/user/auth_openid.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/user/auth_openid.go b/routers/web/user/auth_openid.go
index fc419a7f6e..e6ad6fef4c 100644
--- a/routers/web/user/auth_openid.go
+++ b/routers/web/user/auth_openid.go
@@ -291,7 +291,7 @@ func ConnectOpenIDPost(ctx *context.Context) {
ctx.Data["EnableOpenIDSignUp"] = setting.Service.EnableOpenIDSignUp
ctx.Data["OpenID"] = oid
- u, err := auth.UserSignIn(form.UserName, form.Password)
+ u, _, err := auth.UserSignIn(form.UserName, form.Password)
if err != nil {
if models.IsErrUserNotExist(err) {
ctx.RenderWithErr(ctx.Tr("form.username_password_incorrect"), tplConnectOID, &form)