Added Constants.BRANDING_NAME

This commit is contained in:
dangered wolf 2022-07-14 13:50:22 -04:00
parent 568dd0e70b
commit 5003e407c8
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 9 additions and 8 deletions

View file

@ -1,6 +1,7 @@
const fakeChromeVersion = '103';
export const Constants = {
BRANDING_NAME: `pxTwitter`,
REDIRECT_URL: 'https://twitter.com/dangeredwolf',
TWITTER_ROOT: 'https://twitter.com',
TWITTER_API_ROOT: 'https://api.twitter.com',

View file

@ -29,7 +29,7 @@ const statusRequest = async (request: any) => {
const userAgent = request.headers.get('User-Agent');
if (userAgent.match(/bot/ig) !== null) {
return new Response(await handleStatus(handle, id, mediaNumber), {
return new Response(await handleStatus(handle, id, parseInt(mediaNumber || 1)), {
headers: {
'content-type': 'text/html;charset=UTF-8',
},
@ -56,13 +56,13 @@ router.get('/owoembed', async (request: any) => {
let status = searchParams.get('status') || '1547514042146865153';
const test = {
"author_name":decodeURIComponent(text),
"author_url":`https://twitter.com/${encodeURIComponent(author)}/status/${encodeURIComponent(status)}`,
"provider_name":"pxTwitter",
"provider_url":"https://github.com/dangeredwolf/pxtwitter",
"title":"Twitter",
"type":"link",
"version":"1.0"
"author_name": decodeURIComponent(text),
"author_url": `https://twitter.com/${encodeURIComponent(author)}/status/${encodeURIComponent(status)}`,
"provider_name": Constants.BRANDING_NAME,
"provider_url": Constants.REDIRECT_URL,
"title": "Twitter",
"type": "link",
"version": "1.0"
}
return new Response(JSON.stringify(test), {
headers: {