From 333908c4e0dab1afdfd4d9e9b4cbecd129ccc685 Mon Sep 17 00:00:00 2001 From: teesloane Date: Sun, 31 May 2020 08:48:00 -0400 Subject: [PATCH] =?UTF-8?q?Fix:=20exponential=20use=20of=20swap!=20+=20con?= =?UTF-8?q?cat=20=F0=9F=98=85.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- clojure/src/firn/file.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clojure/src/firn/file.clj b/clojure/src/firn/file.clj index 2d9df293..0e35223f 100644 --- a/clojure/src/firn/file.clj +++ b/clojure/src/firn/file.clj @@ -238,8 +238,8 @@ ;; add to sitemap when file is not private. (when-not is-private (swap! site-map conj new-site-map) - (swap! site-links concat @site-links (-> processed-file :meta :links)) - (swap! site-logs concat @site-logs (-> processed-file :meta :links))) + (swap! site-links concat (-> processed-file :meta :links)) + (swap! site-logs concat (-> processed-file :meta :logbook))) ;; add links and logs to site wide data. (recur org-files output))))))