diff options
author | zhuharev <hostmaster@zhuharev.ru> | 2016-01-06 22:41:42 +0300 |
---|---|---|
committer | zhuharev <hostmaster@zhuharev.ru> | 2016-01-06 22:41:42 +0300 |
commit | 0d5dc8a064faa978a4571f565b20959dcc49f181 (patch) | |
tree | 6e782852e3b8617e5ff804e101dc4ca730611dc1 /modules/auth/auth.go | |
parent | 0cb739684096396e26595ac70817a2a05b61b443 (diff) | |
download | gitea-0d5dc8a064faa978a4571f565b20959dcc49f181.tar.gz gitea-0d5dc8a064faa978a4571f565b20959dcc49f181.zip |
typo fix
Diffstat (limited to 'modules/auth/auth.go')
-rw-r--r-- | modules/auth/auth.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/auth/auth.go b/modules/auth/auth.go index 2e4c80c55e..7c4cfafcf4 100644 --- a/modules/auth/auth.go +++ b/modules/auth/auth.go @@ -55,8 +55,8 @@ func SignedInID(ctx *macaron.Context, sess session.Store) int64 { return 0 } t.Updated = time.Now() - if err = models.UpdateAccessToekn(t); err != nil { - log.Error(4, "UpdateAccessToekn: %v", err) + if err = models.UpdateAccessToken(t); err != nil { + log.Error(4, "UpdateAccessToken: %v", err) } return t.UID } |