Fixed pubDate not showing up in filtered rss feeds

This commit is contained in:
Carmen La 2015-06-23 10:08:26 -04:00
parent 4511536cc9
commit e7636e7586
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -138,7 +138,7 @@
"Adds the uri and title of a post to the list of posts under each of its tags"
[tags post]
(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)))
(defn group-by-tags