Skip to content

Commit db376e9

Browse files
committed
Fix the type mismatch at :path.
ref pokepay#37
1 parent 2ce2cc8 commit db376e9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

generator/shape.lisp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@
5555
(defun make-request-with-input (request-class input method path-conversion action)
5656
(make-instance request-class
5757
: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)
58+
:path (quri:uri-path (add-query-with-input
59+
(etypecase path-conversion
60+
(string path-conversion)
61+
(function (funcall path-conversion input))
62+
(null "/"))
63+
input))
6464
:params (input-params input)
6565
:headers (input-headers input)
6666
:payload (input-payload input)

0 commit comments

Comments
 (0)