Switch webp to jpeg as it generates faster now

This commit is contained in:
dangered wolf 2022-08-23 04:33:22 -04:00
parent 581e7bb9a7
commit 42a5a98ff7
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -192,11 +192,7 @@ export const handleStatus = async (
mosaic response, we'll render it using mosaic */
if (typeof mediaNumber !== 'number' && tweet.media.mosaic) {
photo = {
/* Telegram is dumb and doesn't support webp in opengraph embeds */
url:
userAgent?.indexOf('Telegram') === -1
? tweet.media.mosaic.formats.webp
: tweet.media.mosaic.formats.jpeg,
url: tweet.media.mosaic.formats.jpeg,
width: tweet.media.mosaic.width,
height: tweet.media.mosaic.height,
type: 'photo'