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/markup/html.go | |
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/markup/html.go')
-rw-r--r-- | modules/markup/html.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/markup/html.go b/modules/markup/html.go index bef6269a69..f5f811b59b 100644 --- a/modules/markup/html.go +++ b/modules/markup/html.go @@ -683,9 +683,9 @@ func shortLinkProcessorFull(ctx *postProcessCtx, node *html.Node, noLink bool) { absoluteLink := isLinkStr(link) if !absoluteLink { if image { - link = strings.Replace(link, " ", "+", -1) + link = strings.ReplaceAll(link, " ", "+") } else { - link = strings.Replace(link, " ", "-", -1) + link = strings.ReplaceAll(link, " ", "-") } if !strings.Contains(link, "/") { link = url.PathEscape(link) @@ -902,7 +902,7 @@ func emojiShortCodeProcessor(ctx *postProcessCtx, node *html.Node) { } alias := node.Data[m[0]:m[1]] - alias = strings.Replace(alias, ":", "", -1) + alias = strings.ReplaceAll(alias, ":", "") converted := emoji.FromAlias(alias) if converted == nil { // check if this is a custom reaction |