Skip to content

Commit

Permalink
Fixing transit on the clojure side.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnuernber committed Aug 18, 2022
1 parent be5de7e commit 87354ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tech/v3/libs/transit.clj
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@
prev-offset (long (if (> prev-idx -1)
(.readLong offsets prev-idx)
0))]
(Text. (.substring buffer prev-offset (- (.readLong offsets prev-idx) prev-offset))))))))
(Text. (.substring buffer prev-offset (.readLong offsets idx)
prev-offset)))))))


(defn data->dataset
Expand Down

0 comments on commit 87354ec

Please sign in to comment.