Skip to content

Commit

Permalink
fix: Fix datafy on tapping to handle object data
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz committed Dec 30, 2024
1 parent 38d435e commit 581542f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/elin/interceptor/tap.clj
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
(fn [v#]
(cond
(map? v#) (update-vals v# datafy#)
(list? v#) (map datafy# v#)
(vector? v#) (mapv datafy# v#)
(sequential? v#) (map datafy# v#)
(or (keyword? v#) (symbol? v#)) v#
(instance? Object v#) (str v#)
:else (clojure.core.protocols/datafy v#)))
x#))

Expand Down

0 comments on commit 581542f

Please sign in to comment.