diff options
author | finga <finga@users.noreply.github.com> | 2021-10-06 22:36:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 15:36:24 -0500 |
commit | 67bc04fe21e279805f2f4163791e28272e8133b1 (patch) | |
tree | a0c4df1fcae930db0cb57f73dda05b4e30d54df3 /models/token.go | |
parent | 21a784e94a87ebcf9d95860f0e583b0a9bc629c2 (diff) | |
download | gitea-67bc04fe21e279805f2f4163791e28272e8133b1.tar.gz gitea-67bc04fe21e279805f2f4163791e28272e8133b1.zip |
Fix problem when database ID is not incremented as expected (#17229)
Although #17124 fixed the same issue for the feed, some other parts
with the same issue were found.
Co-authored-by: finga <finga@onders.org>
Diffstat (limited to 'models/token.go')
-rw-r--r-- | models/token.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/token.go b/models/token.go index 3cffdd9ba2..b3712fce5e 100644 --- a/models/token.go +++ b/models/token.go @@ -161,7 +161,7 @@ func ListAccessTokens(opts ListAccessTokensOptions) ([]*AccessToken, error) { sess = sess.Where("name=?", opts.Name) } - sess = sess.Desc("id") + sess = sess.Desc("created_unix") if opts.Page != 0 { sess = db.SetSessionPagination(sess, &opts) |