Comment out got entities (it's a bit noisy)

This commit is contained in:
dangered wolf 2023-08-21 03:46:13 -04:00
parent d231ef6cc2
commit bfc67935b4
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -1,8 +1,8 @@
/* Helps replace t.co links with their originals */
export const linkFixer = (tweet: GraphQLTweet, text: string): string => {
console.log('got entites', {
entities: tweet.legacy.entities
});
// console.log('got entities', {
// entities: tweet.legacy.entities
// });
if (Array.isArray(tweet.legacy.entities?.urls) && tweet.legacy.entities.urls.length) {
tweet.legacy.entities.urls.forEach((url: TcoExpansion) => {
let newURL = url.expanded_url;