3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-10-22 11:07:26 +02:00

Interpreter: insert reset code in truncation text before URL

This commit is contained in:
Pragmatic Software 2025-10-15 13:52:36 -07:00
parent a3c0f616fb
commit 0a00f43335
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
2 changed files with 7 additions and 6 deletions

View File

@ -870,11 +870,12 @@ sub truncate_result($self, $context, $text, $paste_text) {
$paste_result //= 'not pasted';
$self->{pbot}->{logger}->log("Message truncated -- $paste_result\n");
# make room to append the truncation text to the message text
# make room to append the truncation text to the message text and
# append a reset code if formatting was used anywhere in the message
# (third argument to truncate_egc is '' to prevent appending its own ellipsis)
my $trunc_len = $text_len < $max_msg_len ? $text_len : $max_msg_len;
$text = truncate_egc $text, $trunc_len - length $trunc, '';
my $has_formatting = $text =~ /[\x02\x03\x11\x16\x1D\x1E\x1F]/;
$text = truncate_egc $text, $max_msg_len - $has_formatting - length $trunc, '';
$text .= "\x0F" if $has_formatting;
# append the truncation text
$text .= $trunc;

View File

@ -25,8 +25,8 @@ use PBot::Imports;
# These are set by the /misc/update_version script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 4905,
BUILD_DATE => "2025-10-11",
BUILD_REVISION => 4906,
BUILD_DATE => "2025-10-15",
};
sub initialize {}