Skip to content

Commit

Permalink
Fix json-buffer for dotnet 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Dec 21, 2024
1 parent 799d019 commit 2b149ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/portal/runtime/json_buffer.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
:cljs (.stringify js/JSON (f (js/Array.) value))
:cljr (let [json (JsonArray. (JsonNodeOptions.))]
(f json value)
(.ToJsonString json (JsonSerializerOptions.)))
(.ToJsonString json nil))
:clj (let [out (StringWriter.)
json (JsonWriter. out)]
(.beginArray json)
Expand Down

0 comments on commit 2b149ee

Please sign in to comment.