Increase maximum authorText to 256

This commit is contained in:
dangered wolf 2023-09-12 06:15:23 -04:00
parent e723af7639
commit dabe538f35
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -371,7 +371,7 @@ export const handleStatus = async (
`<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}&useXbranding={useXBranding}" type="application/json+oembed" title="{name}">`.format(
{
base: Constants.HOST_URL,
text: encodeURIComponent(truncateWithEllipsis(authorText, 250)),
text: encodeURIComponent(truncateWithEllipsis(authorText, 256)),
deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '',
status: encodeURIComponent(status),
author: encodeURIComponent(tweet.author?.screen_name || ''),