Skip to content

Commit 62925d3

Browse files
author
Adam Simpson
committed
fix: rss support for linked post
1 parent 2ca4859 commit 62925d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cycle.lisp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,8 @@
252252
`((:title . ,(cdr (assoc :title post)))
253253
(:slug . ,slug)
254254
(:excerpt . ,(cdr (assoc :excerpt post)))
255-
(:content . ,(post-for-slug slug))
255+
(:link . ,(cdr (assoc :link post)))
256+
(:content . ,(cdr (assoc :content post)))
256257
(:date . ,(date-as-rfc-822 (cdr (assoc :published post)))))))
257258

258259
(defun gen-rss ()

0 commit comments

Comments
 (0)