diff --git a/src/server.ts b/src/server.ts index 967ff06..d1bfc07 100644 --- a/src/server.ts +++ b/src/server.ts @@ -15,7 +15,7 @@ const statusRequest = async ( const userAgent = request.headers.get('User-Agent') || ''; let isBotUA = - userAgent.match(/bot|facebook|embed|got|Firefox\/92|curl|wget/gi) !== null || true; + userAgent.match(/bot|facebook|embed|got|Firefox\/92|curl|wget/gi) !== null; if ( url.pathname.match(/\/status(es)?\/\d+\.(mp4|png|jpg)/g) !== null || diff --git a/src/status.ts b/src/status.ts index efde165..220193f 100644 --- a/src/status.ts +++ b/src/status.ts @@ -81,7 +81,7 @@ export const handleStatus = async ( /* Video renderer */ if (tweet.media?.video) { - authorText = encodeURIComponent(tweet.text || ''); + authorText = encodeURIComponent(tweet.text || '').substr(0, 300); const { video } = tweet.media;