Skip to content

Commit

Permalink
avoid stale records
Browse files Browse the repository at this point in the history
  • Loading branch information
mccraigmccraig committed May 30, 2023
1 parent c1d3d58 commit 6f66594
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/a_frame/cofx/data/tag_readers.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

;; if we eval the path then we can use var symbols
;; in the path. this will only work on clj
(cofx-path (eval path)))))
((resolve 'a-frame.cofx.data.paths/cofx-path) (eval path)))))

#?(:clj
(defn read-event-path
Expand All @@ -28,7 +28,7 @@
(if-cljs
`(event-path ~path)

(event-path (eval path)))))
((resolve 'a-frame.cofx.data.paths/event-path) (eval path)))))

#?(:cljs
(defn ^:export read-cofx-path
Expand Down
2 changes: 1 addition & 1 deletion src/a_frame/interceptor_chain/data/tag_readers.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

;; if we eval the path then we can use var symbols
;; in the path. this will only work on clj
(data-path (eval path)))))
((resolve 'a-frame.interceptor-chain.data/data-path) (eval path)))))

#?(:cljs
(defn ^:export read-ctx-path
Expand Down

0 comments on commit 6f66594

Please sign in to comment.