about summary refs log tree commit diff
path: root/services/tazblog/src/RSS.hs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-08-25T19·22+0100
committerVincent Ambo <tazjin@google.com>2019-08-25T19·22+0100
commit094aafecddc61f36de178205ba9bfd592dc3481f (patch)
tree8b33d5028464b2e68a992108974967a5e21d9f54 /services/tazblog/src/RSS.hs
parent6450347bf13ae8f7f5b9004cbaee353f5670c628 (diff)
chore(tazblog): Remove 'read more' feature r/62
Diffstat (limited to 'services/tazblog/src/RSS.hs')
-rw-r--r--services/tazblog/src/RSS.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/tazblog/src/RSS.hs b/services/tazblog/src/RSS.hs
index d3e78ba0fb..0ee9a6e435 100644
--- a/services/tazblog/src/RSS.hs
+++ b/services/tazblog/src/RSS.hs
@@ -29,7 +29,7 @@ createItem :: Entry -> Item
 createItem Entry {..} =
   [ Title $ T.unpack title,
     Link $ makeLink lang entryId,
-    Description $ T.unpack btext,
+    Description $ T.unpack text,
     PubDate $ UTCTime edate $ secondsToDiffTime 0
     ]