From 3a8b312f6dd5e370281522c6795a059e21aaed07 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 3 Jun 2025 18:22:21 +0200 Subject: [PATCH] :bug: Fix calculate hash on empty path data instance --- common/src/app/common/types/path/impl.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/types/path/impl.cljc b/common/src/app/common/types/path/impl.cljc index bcfe392efb..cb973ca70e 100644 --- a/common/src/app/common/types/path/impl.cljc +++ b/common/src/app/common/types/path/impl.cljc @@ -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