mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix double URI decode bug in oembed
This commit is contained in:
parent
5feb0a4478
commit
9ee9932f3e
1 changed files with 2 additions and 2 deletions
|
@ -177,10 +177,10 @@ router.get('/owoembed', async (request: Request) => {
|
|||
const [name, url] = Object.entries(motd)[random];
|
||||
|
||||
const test = {
|
||||
author_name: decodeURIComponent(text),
|
||||
author_name: text,
|
||||
author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent(
|
||||
author
|
||||
)}/status/${encodeURIComponent(status)}`,
|
||||
)}/status/${status}`,
|
||||
/* Change provider name if tweet is on deprecated domain. */
|
||||
provider_name:
|
||||
searchParams.get('deprecated') === 'true'
|
||||
|
|
Loading…
Add table
Reference in a new issue