mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Comment out got entities (it's a bit noisy)
This commit is contained in:
parent
d231ef6cc2
commit
bfc67935b4
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
/* Helps replace t.co links with their originals */
|
/* Helps replace t.co links with their originals */
|
||||||
export const linkFixer = (tweet: GraphQLTweet, text: string): string => {
|
export const linkFixer = (tweet: GraphQLTweet, text: string): string => {
|
||||||
console.log('got entites', {
|
// console.log('got entities', {
|
||||||
entities: tweet.legacy.entities
|
// entities: tweet.legacy.entities
|
||||||
});
|
// });
|
||||||
if (Array.isArray(tweet.legacy.entities?.urls) && tweet.legacy.entities.urls.length) {
|
if (Array.isArray(tweet.legacy.entities?.urls) && tweet.legacy.entities.urls.length) {
|
||||||
tweet.legacy.entities.urls.forEach((url: TcoExpansion) => {
|
tweet.legacy.entities.urls.forEach((url: TcoExpansion) => {
|
||||||
let newURL = url.expanded_url;
|
let newURL = url.expanded_url;
|
||||||
|
|
Loading…
Add table
Reference in a new issue