Fix double URI decode bug in oembed

This commit is contained in:
dangered wolf 2022-08-28 04:17:14 -04:00
parent 5feb0a4478
commit 9ee9932f3e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -177,10 +177,10 @@ router.get('/owoembed', async (request: Request) => {
const [name, url] = Object.entries(motd)[random]; const [name, url] = Object.entries(motd)[random];
const test = { const test = {
author_name: decodeURIComponent(text), author_name: text,
author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent( author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent(
author author
)}/status/${encodeURIComponent(status)}`, )}/status/${status}`,
/* Change provider name if tweet is on deprecated domain. */ /* Change provider name if tweet is on deprecated domain. */
provider_name: provider_name:
searchParams.get('deprecated') === 'true' searchParams.get('deprecated') === 'true'