mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Add Bypass bot check log
This commit is contained in:
parent
48c496370f
commit
f18ebd083a
1 changed files with 5 additions and 1 deletions
|
@ -78,7 +78,11 @@ const statusRequest = async (
|
|||
|
||||
/* Direct media or API access bypasses bot check, returning same response regardless of UA */
|
||||
if (isBotUA || flags.direct || flags.api) {
|
||||
console.log(`Matched bot UA ${userAgent}`);
|
||||
if (isBotUA) {
|
||||
console.log(`Matched bot UA ${userAgent}`);
|
||||
} else {
|
||||
console.log('Bypass bot check');
|
||||
}
|
||||
|
||||
/* This throws the necessary data to handleStatus (in status.ts) */
|
||||
const statusResponse = await handleStatus(
|
||||
|
|
Loading…
Add table
Reference in a new issue