This commit is contained in:
dangered wolf 2023-11-02 04:56:02 -04:00
parent edeb38fcea
commit 54dc797247
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -156,7 +156,7 @@ const generateTweetFooter = (tweet: APIPost, isQuote = false): string => {
joined: author.joined ? `📆 ${formatDate(new Date(author.joined))}` : '',
following: truncateSocialCount(author.following),
followers: truncateSocialCount(author.followers),
tweets: truncateSocialCount(author.tweets)
tweets: truncateSocialCount(author.posts)
})
});
};