🐛 Fix calculate hash on empty path data instance

This commit is contained in:
Andrey Antukh 2025-06-03 18:22:21 +02:00
parent 8f55269522
commit 3a8b312f6d

View file

@ -307,7 +307,7 @@
clojure.lang.IHashEq
(hasheq [this]
(when-not hash
(set! hash (clojure.lang.Murmur3/hashOrdered (seq this))))
(set! hash (clojure.lang.Murmur3/hashOrdered (vec this))))
hash)
clojure.lang.Sequential