You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there way to rework that regexp: Net/Jabber/Bot.pm:992 $message_chunk =~ s/[^[:print:]]+/./xmsg;
And include that update on CPAN, something like: $message_chunk =~ s/[^[:print:]]+/\n/xmsg; #new line usually is more required than dot :)
becouse is the large trouble with adding newlines in message.
The text was updated successfully, but these errors were encountered:
Is there way to rework that regexp:
Net/Jabber/Bot.pm:992
$message_chunk =~ s/[^[:print:]]+/./xmsg;
And include that update on CPAN, something like:
$message_chunk =~ s/[^[:print:]]+/\n/xmsg; #new line usually is more required than dot :)
becouse is the large trouble with adding newlines in message.
The text was updated successfully, but these errors were encountered: