From dc0702a055d57b1042f56a7ba8ee1ed51332b85a Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Tue, 2 Jul 2019 17:36:43 +0100 Subject: [PATCH] fix URLDecodeVarMap --- common/routing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/routing.go b/common/routing.go index 6ff299533..ec56e1f46 100644 --- a/common/routing.go +++ b/common/routing.go @@ -31,5 +31,5 @@ func URLDecodeVarMap(vars map[string]string) (map[string]string, error) { decodedVars[key] = decoded } - return decodedVars, err + return decodedVars, nil }