From 64133126cdb842a047b2cd104c2f177f6e83f79a Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 11 Oct 2020 22:27:20 +0200 Subject: 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 --- modules/util/sanitize.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/util') diff --git a/modules/util/sanitize.go b/modules/util/sanitize.go index b1c17b29cf..a4f5479dfb 100644 --- a/modules/util/sanitize.go +++ b/modules/util/sanitize.go @@ -28,7 +28,7 @@ func URLSanitizedError(err error, unsanitizedURL string) error { // SanitizeMessage sanitizes a message which may contains a sensitive URL func SanitizeMessage(message, unsanitizedURL string) string { sanitizedURL := SanitizeURLCredentials(unsanitizedURL, true) - return strings.Replace(message, unsanitizedURL, sanitizedURL, -1) + return strings.ReplaceAll(message, unsanitizedURL, sanitizedURL) } // SanitizeURLCredentials sanitizes a url, either removing user credentials -- cgit v1.2.3