From 6dd5b18a7bf4c7a697c90df7c7573fcdf0bc4dc2 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 10 Nov 2023 18:37:22 -0500 Subject: [PATCH] Show views on available tweets without other interactions --- src/helpers/author.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/author.ts b/src/helpers/author.ts index dde6c44..5a8e95c 100644 --- a/src/helpers/author.ts +++ b/src/helpers/author.ts @@ -3,7 +3,7 @@ import { formatNumber } from './utils'; /* The embed "author" text we populate with replies, retweets, and likes unless it's a video */ export const getAuthorText = (tweet: APITweet): string | null => { /* Build out reply, retweet, like counts */ - if (tweet.likes > 0 || tweet.reposts > 0 || tweet.replies > 0) { + if (tweet.likes > 0 || tweet.reposts > 0 || tweet.replies > 0 || (tweet.views ? tweet.views > 0 : false)) { let authorText = ''; if (tweet.replies > 0) { authorText += `${formatNumber(tweet.replies)} 💬 `;