mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Remove unused useXBranding parameter
This commit is contained in:
parent
041c3f5dfa
commit
17d0e2c125
2 changed files with 1 additions and 4 deletions
|
@ -411,14 +411,13 @@ export const handleStatus = async (
|
|||
/* The additional oembed is pulled by Discord to enable improved embeds.
|
||||
Telegram does not use this. */
|
||||
headers.push(
|
||||
`<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}&useXbranding={useXBranding}" type="application/json+oembed" title="{name}">`.format(
|
||||
`<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}" type="application/json+oembed" title="{name}">`.format(
|
||||
{
|
||||
base: Constants.HOST_URL,
|
||||
text: encodeURIComponent(truncateWithEllipsis(authorText, 256)),
|
||||
deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '',
|
||||
status: encodeURIComponent(status),
|
||||
author: encodeURIComponent(tweet.author?.screen_name || ''),
|
||||
useXBranding: flags?.isXDomain ? 'true' : 'false',
|
||||
name: tweet.author.name || ''
|
||||
}
|
||||
)
|
||||
|
|
|
@ -469,7 +469,6 @@ router.get('/owoembed', async (request: IRequest) => {
|
|||
const text = searchParams.get('text') || 'Twitter';
|
||||
const author = searchParams.get('author') || 'jack';
|
||||
const status = searchParams.get('status') || '20';
|
||||
// const useXbranding = searchParams.get('useXbranding') === 'true';
|
||||
|
||||
const random = Math.floor(Math.random() * Object.keys(motd).length);
|
||||
const [name, url] = Object.entries(motd)[random];
|
||||
|
@ -480,7 +479,6 @@ router.get('/owoembed', async (request: IRequest) => {
|
|||
/* Change provider name if tweet is on deprecated domain. */
|
||||
provider_name:
|
||||
searchParams.get('deprecated') === 'true' ? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD : name,
|
||||
/*useXbranding ? name : Strings.X_DOMAIN_NOTICE*/
|
||||
provider_url: url,
|
||||
title: Strings.DEFAULT_AUTHOR_TEXT,
|
||||
type: 'link',
|
||||
|
|
Loading…
Add table
Reference in a new issue