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. */
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;
}

View file

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