From d58bd9f1d79f2f1ce3b28b7c473557cb8c41f628 Mon Sep 17 00:00:00 2001 From: swag Date: Mon, 21 Nov 2022 23:02:25 -0500 Subject: [PATCH] Moar emoji --- lib/PostText.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PostText.pm b/lib/PostText.pm index 38379b7..fda0798 100644 --- a/lib/PostText.pm +++ b/lib/PostText.pm @@ -45,7 +45,7 @@ sub startup($self) { $self->helper(truncate_text => sub ($c, $input_text) { my $truncated_text = 500 < length($input_text) - ? substr($input_text, 0, 500) . '...' : $input_text; + ? substr($input_text, 0, 500) . '…' : $input_text; return $truncated_text; });