We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ce2cc8 commit db376e9Copy full SHA for db376e9
generator/shape.lisp
@@ -55,12 +55,12 @@
55
(defun make-request-with-input (request-class input method path-conversion action)
56
(make-instance request-class
57
:method method
58
- :path (add-query-with-input
59
- (etypecase path-conversion
60
- (string path-conversion)
61
- (function (funcall path-conversion input))
62
- (null "/"))
63
- input)
+ :path (quri:uri-path (add-query-with-input
+ (etypecase path-conversion
+ (string path-conversion)
+ (function (funcall path-conversion input))
+ (null "/"))
+ input))
64
:params (input-params input)
65
:headers (input-headers input)
66
:payload (input-payload input)
0 commit comments