Fixed pubDate not showing up in filtered rss feeds

master
Carmen La 9 years ago
parent 4511536cc9
commit e7636e7586

@ -1,4 +1,4 @@
(defproject cryogen-core "0.1.22" (defproject cryogen-core "0.1.23"
:description "Cryogen's compiler" :description "Cryogen's compiler"
:url "https://github.com/cryogen-project/cryogen-core" :url "https://github.com/cryogen-project/cryogen-core"
:license {:name "Eclipse Public License" :license {:name "Eclipse Public License"

@ -138,7 +138,7 @@
"Adds the uri and title of a post to the list of posts under each of its tags" "Adds the uri and title of a post to the list of posts under each of its tags"
[tags post] [tags post]
(reduce (fn [tags tag] (reduce (fn [tags tag]
(update-in tags [tag] (fnil conj []) (select-keys post [:uri :title :content]))) (update-in tags [tag] (fnil conj []) (select-keys post [:uri :title :content :date])))
tags (:tags post))) tags (:tags post)))
(defn group-by-tags (defn group-by-tags

Loading…
Cancel
Save