fix URLDecodeVarMap

This commit is contained in:
Andrew Morgan 2019-07-02 17:36:43 +01:00
parent a0eeba8af6
commit dc0702a055

View file

@ -31,5 +31,5 @@ func URLDecodeVarMap(vars map[string]string) (map[string]string, error) {
decodedVars[key] = decoded
}
return decodedVars, err
return decodedVars, nil
}