diff --git a/src/card.ts b/src/card.ts index f58dfa4..5c2a6f2 100644 --- a/src/card.ts +++ b/src/card.ts @@ -81,7 +81,6 @@ ${label}  (${Math.round((votes / totalVotes || 0) * 100)}%) } str += `\n${totalVotes} votes · ${timeLeft}`; - console.log(str); /* Oh good, a non-Twitter video URL! This enables YouTube embeds and stuff to just work */ } else if (typeof values.player_url !== 'undefined') { headers.push( diff --git a/src/status.ts b/src/status.ts index 85b9560..44f4787 100644 --- a/src/status.ts +++ b/src/status.ts @@ -248,8 +248,6 @@ export const handleStatus = async ( )}" type="application/json+oembed" title="${name}">` ); - console.log(JSON.stringify(tweet)); - /* When dealing with a Tweet of unknown lang, fall back to en */ let lang = tweet.lang === 'unk' ? 'en' : tweet.lang || 'en';