Skip to content

Commit

Permalink
Fix: type error
Browse files Browse the repository at this point in the history
Avoid string-equal on list with types.
  • Loading branch information
kilianmh committed Sep 12, 2023
1 parent 8b2cb71 commit af4d633
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/core.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@
prop-schema
classes-cache
:export-symbols export-symbols)))))
((string-equal type "array")
((and (stringp type)
(string-equal type "array"))
(let ((element-transformation
(generate-result-transformation api-class-name
'item
Expand Down

0 comments on commit af4d633

Please sign in to comment.