Prettier and update fakeChromeVersion

This commit is contained in:
dangered wolf 2023-04-09 18:08:01 -04:00
parent fc5bc49a85
commit 87956c6759
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
4 changed files with 16 additions and 8 deletions

View file

@ -102,11 +102,12 @@ const populateTweetProperties = async (
// Add Tweet source but remove the link HTML tag
if (tweet.source) {
apiTweet.source = (tweet.source || '')
.replace(/<a href="(.+?)" rel="nofollow">(.+?)<\/a>/, '$2')
apiTweet.source = (tweet.source || '').replace(
/<a href="(.+?)" rel="nofollow">(.+?)<\/a>/,
'$2'
);
}
/* Populate a Twitter card */
if (tweet.card) {
const card = await renderCard(tweet.card);
@ -171,7 +172,9 @@ export const statusAPI = async (
typeof tweet.full_text === 'undefined' &&
conversation.timeline?.instructions?.length > 0
) {
console.log('Tweet could not be accessed with elongator, must be private/suspended');
console.log(
'Tweet could not be accessed with elongator, must be private/suspended'
);
return { code: 401, message: 'PRIVATE_TWEET' };
}
} else {

View file

@ -88,7 +88,7 @@ export const twitterFetch = async (
// if (useElongator) {
// activate = await TwitterProxy.fetch(guestTokenRequest.clone());
// } else {
activate = await fetch(guestTokenRequest.clone());
activate = await fetch(guestTokenRequest.clone());
// }
}
@ -134,7 +134,7 @@ export const twitterFetch = async (
headers: headers
});
}
response = await apiRequest?.json();
} catch (e: unknown) {
/* We'll usually only hit this if we get an invalid response from Twitter.

View file

@ -1,6 +1,6 @@
/* We keep this value up-to-date for making our requests to Twitter as
indistinguishable from normal user traffic as possible. */
const fakeChromeVersion = 111;
const fakeChromeVersion = 112;
const platformWindows = 'Windows NT 10.0; Win64; x64';
const platformMac = 'Macintosh; Intel Mac OS X 10_15_7';
const platformLinux = 'X11; Linux x86_64';

7
src/types/env.d.ts vendored
View file

@ -15,4 +15,9 @@ declare const RELEASE_NAME: string;
declare const TEST: boolean | undefined;
declare const TwitterProxy: { fetch: (input: RequestInfo<unknown, CfProperties<unknown>>, init?: RequestInit<RequestInitCfProperties> | undefined) => Promise<Response> };
declare const TwitterProxy: {
fetch: (
input: RequestInfo<unknown, CfProperties<unknown>>,
init?: RequestInit<RequestInitCfProperties> | undefined
) => Promise<Response>;
};