From 683df41e2a8a6cf125514d0f28959ecf0708391e Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 11 Mar 2022 14:55:12 +0100 Subject: [PATCH] changed date format to existing on website --- src/main/dda/masto_embed/reply_mode.cljs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/dda/masto_embed/reply_mode.cljs b/src/main/dda/masto_embed/reply_mode.cljs index dfd223c..26c924f 100644 --- a/src/main/dda/masto_embed/reply_mode.cljs +++ b/src/main/dda/masto_embed/reply_mode.cljs @@ -58,8 +58,7 @@ [:div {:class "col-sm"} [:h2 {:class "card-title"} [:a {:href (get-in status [:url])} - (t/unparse (t/formatters :date) date) " " - (t/unparse (t/formatters :hour-minute-second) date)]] + (t/unparse (t/formatter "dd.MM.yyyy") date) " "]] [:div {:class "card-text"} (:content status)]] [:div {:class "col-sm"} (mastomedia->html media_attachments)]]]))