diff --git a/src/embed/status.ts b/src/embed/status.ts
index edfad7a..3749e1a 100644
--- a/src/embed/status.ts
+++ b/src/embed/status.ts
@@ -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(
- ``.format(
+ ``.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 || ''
}
)
diff --git a/src/worker.ts b/src/worker.ts
index 021c0d5..95984dd 100644
--- a/src/worker.ts
+++ b/src/worker.ts
@@ -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',