Remove unused useXBranding parameter

This commit is contained in:
dangered wolf 2023-11-08 18:33:47 -05:00
parent 041c3f5dfa
commit 17d0e2c125
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 1 additions and 4 deletions

View file

@ -411,14 +411,13 @@ export const handleStatus = async (
/* The additional oembed is pulled by Discord to enable improved embeds. /* The additional oembed is pulled by Discord to enable improved embeds.
Telegram does not use this. */ Telegram does not use this. */
headers.push( 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, base: Constants.HOST_URL,
text: encodeURIComponent(truncateWithEllipsis(authorText, 256)), text: encodeURIComponent(truncateWithEllipsis(authorText, 256)),
deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '', deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '',
status: encodeURIComponent(status), status: encodeURIComponent(status),
author: encodeURIComponent(tweet.author?.screen_name || ''), author: encodeURIComponent(tweet.author?.screen_name || ''),
useXBranding: flags?.isXDomain ? 'true' : 'false',
name: tweet.author.name || '' name: tweet.author.name || ''
} }
) )

View file

@ -469,7 +469,6 @@ router.get('/owoembed', async (request: IRequest) => {
const text = searchParams.get('text') || 'Twitter'; const text = searchParams.get('text') || 'Twitter';
const author = searchParams.get('author') || 'jack'; const author = searchParams.get('author') || 'jack';
const status = searchParams.get('status') || '20'; const status = searchParams.get('status') || '20';
// const useXbranding = searchParams.get('useXbranding') === 'true';
const random = Math.floor(Math.random() * Object.keys(motd).length); const random = Math.floor(Math.random() * Object.keys(motd).length);
const [name, url] = Object.entries(motd)[random]; 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. */ /* Change provider name if tweet is on deprecated domain. */
provider_name: provider_name:
searchParams.get('deprecated') === 'true' ? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD : name, searchParams.get('deprecated') === 'true' ? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD : name,
/*useXbranding ? name : Strings.X_DOMAIN_NOTICE*/
provider_url: url, provider_url: url,
title: Strings.DEFAULT_AUTHOR_TEXT, title: Strings.DEFAULT_AUTHOR_TEXT,
type: 'link', type: 'link',