mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-03 17:40:56 +01:00
Fixed bugs from rewrite
This commit is contained in:
parent
29f588b346
commit
6cef702845
2 changed files with 2 additions and 2 deletions
|
@ -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 ||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue