Fix tests

This commit is contained in:
dangered wolf 2023-11-02 05:22:09 -04:00
parent e22ea3ac73
commit 8f57f389ef
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 13 additions and 8 deletions

View file

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

View file

@ -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. */