You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Correct Encoding and restore decodeSlash in QueryTemplate (#1160)
Fixes#1156
Collection Format was encoding query string values unnecessarily
due to changes introduced in #1138 and #1139 that encode template
values before appending them to the query string.
In addition, `decodeSlash` flags that were accidentally removed,
have been restored in QueryTemplate.
* Restoring decodeSlash in QueryTemplate
* Correcting Readme with regards to decodeSlash usage
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -216,8 +216,8 @@ http://localhost:8080/test
216
216
See [AdvancedUsage](#advanced-usage) for more examples.
217
217
218
218
>**What about slashes? `/`**
219
-
>
220
-
>@RequestLineand @QueryMapTemplatesdo encode slash `/` characters by default. To change this behavior, set the `decodeSlash` property on the `@RequestLine` to `true`.
219
+
>
220
+
>@RequestLinetemplates donot encode slash `/` characters by default. To change this behavior, set the `decodeSlash` property on the `@RequestLine` to `false`.
0 commit comments