mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fix tests
This commit is contained in:
parent
e22ea3ac73
commit
8f57f389ef
2 changed files with 13 additions and 8 deletions
|
@ -25,19 +25,21 @@ export const returnError = (error: string): StatusResponse => {
|
||||||
Like Twitter, we use the terminologies interchangably. */
|
Like Twitter, we use the terminologies interchangably. */
|
||||||
export const handleStatus = async (
|
export const handleStatus = async (
|
||||||
status: string,
|
status: string,
|
||||||
mediaNumber?: number,
|
mediaNumber: number | undefined,
|
||||||
userAgent?: string,
|
userAgent: string,
|
||||||
flags?: InputFlags,
|
flags: InputFlags,
|
||||||
language?: string,
|
language: string,
|
||||||
event?: FetchEvent
|
event: FetchEvent,
|
||||||
|
request: IRequest
|
||||||
// eslint-disable-next-line sonarjs/cognitive-complexity
|
// eslint-disable-next-line sonarjs/cognitive-complexity
|
||||||
): Promise<StatusResponse> => {
|
): Promise<StatusResponse> => {
|
||||||
console.log('Direct?', flags?.direct);
|
console.log('Direct?', flags?.direct);
|
||||||
|
|
||||||
const request = (event as FetchEvent).request as IRequest;
|
console.log('event', event)
|
||||||
|
|
||||||
let fetchWithThreads = false;
|
let fetchWithThreads = false;
|
||||||
|
|
||||||
if (request.headers.get('user-agent')?.includes('Telegram') && !flags?.direct) {
|
if (request?.headers.get('user-agent')?.includes('Telegram') && !flags?.direct) {
|
||||||
fetchWithThreads = true;
|
fetchWithThreads = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -132,6 +132,8 @@ const statusRequest = async (request: IRequest, event: FetchEvent, flags: InputF
|
||||||
console.log('Bypass bot check');
|
console.log('Bypass bot check');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log('event', event)
|
||||||
|
|
||||||
/* This throws the necessary data to handleStatus (in status.ts) */
|
/* This throws the necessary data to handleStatus (in status.ts) */
|
||||||
const statusResponse = await handleStatus(
|
const statusResponse = await handleStatus(
|
||||||
id?.match(/\d{2,20}/)?.[0] || '0',
|
id?.match(/\d{2,20}/)?.[0] || '0',
|
||||||
|
@ -139,7 +141,8 @@ const statusRequest = async (request: IRequest, event: FetchEvent, flags: InputF
|
||||||
userAgent,
|
userAgent,
|
||||||
flags,
|
flags,
|
||||||
language,
|
language,
|
||||||
event
|
event,
|
||||||
|
request
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Complete responses are normally sent just by errors. Normal embeds send a `text` value. */
|
/* Complete responses are normally sent just by errors. Normal embeds send a `text` value. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue