diff --git a/cmd/root.go b/cmd/root.go index d2ddd05..8bd476e 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -12,7 +12,7 @@ import ( ) const ( - ReleaseVersion string = "3.2.8" + ReleaseVersion string = "3.2.9" ) var ( diff --git a/cmd/sort.go b/cmd/sort.go index 3e5a8d2..ab850f8 100644 --- a/cmd/sort.go +++ b/cmd/sort.go @@ -91,7 +91,7 @@ Loop: } func pathUrlEscape(path string) string { - return strings.Replace(path, `'`, `'`, -1) + return strings.Replace(path, `'`, `%27`, -1) } func paginateSorted(path, first, last, queryParams string, regexes *regexes, formats types.Types) (string, error) {