mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Show views on available tweets without other interactions
This commit is contained in:
parent
e8fe148202
commit
6dd5b18a7b
1 changed files with 1 additions and 1 deletions
|
@ -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)} 💬 `;
|
||||
|
|
Loading…
Add table
Reference in a new issue