Fixed pubDate not showing up in filtered rss feeds
This commit is contained in:
parent
4511536cc9
commit
e7636e7586
2 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue