fix handling of subvector paths in cljs

This commit is contained in:
nathanmarz 2018-06-26 08:39:28 -04:00
parent 3536e3c461
commit e7abb2b538
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
* Eliminate reflection warning
* Bug fix: Fix inline compiler symbol handling so class references can be used as constants within paths
* Bug fix: Fix handling of subvector paths in cljs
## 1.1.1 - 2018-04-23

View file

@ -177,7 +177,7 @@
(coerce-path (vec this))))
#?(:cljs cljs.core/Subvec)
#?(:cljs (coerce-path [this]
(coerce-path (vec this))))
(coerce-path (into [] this))))
#?(:clj Object :cljs default)
(coerce-path [this]