From e4b9efd7938220a79a96f5dc12678ff6a1088f32 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 10 Nov 2023 00:57:07 -0500 Subject: [PATCH] Limit length to 255 not 256 (fixes #474) --- src/embed/status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/embed/status.ts b/src/embed/status.ts index 10cfcb1..c39e358 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -410,7 +410,7 @@ export const handleStatus = async ( ``.format( { base: Constants.HOST_URL, - text: encodeURIComponent(truncateWithEllipsis(authorText, 256)), + text: encodeURIComponent(truncateWithEllipsis(authorText, 255)), deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '', status: encodeURIComponent(status), author: encodeURIComponent(tweet.author?.screen_name || ''),