Limit length to 255 not 256 (fixes #474)

This commit is contained in:
dangered wolf 2023-11-10 00:57:07 -05:00
parent 66dd15ea63
commit e4b9efd793
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -410,7 +410,7 @@ export const handleStatus = async (
`<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}" 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, 255)),
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 || ''),