Removed some of the more verbose logging

This commit is contained in:
dangered wolf 2022-07-15 01:27:43 -04:00
parent 263b7bcb24
commit bb9d5c23cb
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 0 additions and 3 deletions

View file

@ -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(

View file

@ -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';