diff options
author | Mohammed Al Sahaf <[email protected]> | 2020-04-09 00:31:51 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-08 15:31:51 -0600 |
commit | 7dfd69cdc5966ae454e35cd6e976686131bfda8d (patch) | |
tree | 4d58832966c5136d5be3d9b3f63dcb07c30999d1 /modules/caddyhttp/replacer.go | |
parent | 28fdf64dc510472ccd9e6d46eb149d19cd70919a (diff) | |
download | caddy-7dfd69cdc5966ae454e35cd6e976686131bfda8d.tar.gz caddy-7dfd69cdc5966ae454e35cd6e976686131bfda8d.zip |
chore: make the linter happier (#3245)
* chore: make the linter happier
* chore: remove reference to maligned linter in .golangci.yml
Diffstat (limited to 'modules/caddyhttp/replacer.go')
-rw-r--r-- | modules/caddyhttp/replacer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/replacer.go b/modules/caddyhttp/replacer.go index 51fe67fd5..b83977c66 100644 --- a/modules/caddyhttp/replacer.go +++ b/modules/caddyhttp/replacer.go @@ -188,7 +188,7 @@ func addHTTPVarsToReplacer(repl *caddy.Replacer, req *http.Request, w http.Respo if strings.HasPrefix(key, varsReplPrefix) { varName := key[len(varsReplPrefix):] tbl := req.Context().Value(VarsCtxKey).(map[string]interface{}) - raw, _ := tbl[varName] + raw := tbl[varName] // variables can be dynamic, so always return true // even when it may not be set; treat as empty then return raw, true |