Fixed bugs from rewrite

This commit is contained in:
dangered wolf 2022-07-25 20:47:26 -04:00
parent 29f588b346
commit 6cef702845
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 2 additions and 2 deletions

View file

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

View file

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