about summary refs log tree commit diff
path: root/services/tazblog/src/BlogStore.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/BlogStore.hs
parent6450347bf13ae8f7f5b9004cbaee353f5670c628 (diff)
chore(tazblog): Remove 'read more' feature r/62
Diffstat (limited to 'services/tazblog/src/BlogStore.hs')
-rw-r--r--services/tazblog/src/BlogStore.hs6
1 files changed, 2 insertions, 4 deletions
diff --git a/services/tazblog/src/BlogStore.hs b/services/tazblog/src/BlogStore.hs
index 0472fef56b..4e5171252e 100644
--- a/services/tazblog/src/BlogStore.hs
+++ b/services/tazblog/src/BlogStore.hs
@@ -57,8 +57,7 @@ data Entry
         lang :: BlogLang,
         author :: Text,
         title :: Text,
-        btext :: Text,
-        mtext :: Text,
+        text :: Text,
         edate :: Day
         }
   deriving (Eq, Ord, Show)
@@ -170,8 +169,7 @@ entryFromDNS cache eid = do
                   lang = EN,
                   author = "tazjin",
                   title = t,
-                  btext = text,
-                  mtext = "",
+                  text = text,
                   edate = d
                   }
               )