mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +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. */
|
||||
export const handleStatus = async (
|
||||
status: string,
|
||||
mediaNumber?: number,
|
||||
userAgent?: string,
|
||||
flags?: InputFlags,
|
||||
language?: string,
|
||||
event?: FetchEvent
|
||||
mediaNumber: number | undefined,
|
||||
userAgent: string,
|
||||
flags: InputFlags,
|
||||
language: string,
|
||||
event: FetchEvent,
|
||||
request: IRequest
|
||||
// eslint-disable-next-line sonarjs/cognitive-complexity
|
||||
): Promise<StatusResponse> => {
|
||||
console.log('Direct?', flags?.direct);
|
||||
|
||||
const request = (event as FetchEvent).request as IRequest;
|
||||
console.log('event', event)
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
|
@ -132,6 +132,8 @@ const statusRequest = async (request: IRequest, event: FetchEvent, flags: InputF
|
|||
console.log('Bypass bot check');
|
||||
}
|
||||
|
||||
console.log('event', event)
|
||||
|
||||
/* This throws the necessary data to handleStatus (in status.ts) */
|
||||
const statusResponse = await handleStatus(
|
||||
id?.match(/\d{2,20}/)?.[0] || '0',
|
||||
|
@ -139,7 +141,8 @@ const statusRequest = async (request: IRequest, event: FetchEvent, flags: InputF
|
|||
userAgent,
|
||||
flags,
|
||||
language,
|
||||
event
|
||||
event,
|
||||
request
|
||||
);
|
||||
|
||||
/* Complete responses are normally sent just by errors. Normal embeds send a `text` value. */
|
||||
|
|
Loading…
Add table
Reference in a new issue