diff options
author | kolaente <k@knt.li> | 2020-10-11 22:27:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-11 21:27:20 +0100 |
commit | 64133126cdb842a047b2cd104c2f177f6e83f79a (patch) | |
tree | 8bfd86c1f7a3c565c19552c588758674384796e3 /modules/repository | |
parent | e35f7e81ae7ed8388a8011baa43cb4faf42ebfe0 (diff) | |
download | gitea-64133126cdb842a047b2cd104c2f177f6e83f79a.tar.gz gitea-64133126cdb842a047b2cd104c2f177f6e83f79a.zip |
Update golangci-lint to version 1.31.0 (#13102)
This PR updates golangci-lint to the latest version 1.31.0.
The upgrade introduced a new check for which I've fixed or disabled most cases.
Signed-off-by: kolaente <k@knt.li>
Diffstat (limited to 'modules/repository')
-rw-r--r-- | modules/repository/check.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/repository/check.go b/modules/repository/check.go index 90186d6a29..274576c348 100644 --- a/modules/repository/check.go +++ b/modules/repository/check.go @@ -120,7 +120,7 @@ func gatherMissingRepoRecords(ctx context.Context) ([]*models.Repository, error) return nil }, ); err != nil { - if strings.HasPrefix("Aborted gathering missing repo", err.Error()) { + if strings.HasPrefix(err.Error(), "Aborted gathering missing repo") { return nil, err } if err2 := models.CreateRepositoryNotice("gatherMissingRepoRecords: %v", err); err2 != nil { |