From 5c925283d7a350fdf4badc9dc9224be54903f5c4 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 8 Mar 2025 18:50:34 +0800 Subject: [PATCH] Attempt to fix posts with invalid dates --- src/components/status.jsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/components/status.jsx b/src/components/status.jsx index f75f6e98..44aad700 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -2331,13 +2331,15 @@ function Status({ ) } - + {!!createdAt && ( + + )} {editedAt && ( <> @@ -3221,7 +3223,7 @@ function generateHTMLCode(post, instance, level = 0) { — ${emojifyText( displayName, accountEmojis, - )} (@${acct}) + )} (@${acct}) ${!!createdAt ? `` : ''} `;