Interpreter: restore preserve_escapes in make_args() to fix sed

Update factoids
This commit is contained in:
Pragmatic Software 2024-06-03 09:07:53 -07:00
parent 0848cfcdd4
commit 04209e4b7e
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
3 changed files with 3 additions and 3 deletions

BIN
data/factoids.sqlite3 vendored

Binary file not shown.

View File

@ -1290,7 +1290,7 @@ sub split_line($self, $line, %opts) {
sub make_args($self, $string, %opts) {
my %default_opts = (
keep_spaces => 1,
preserve_escapes => 0,
preserve_escapes => 1,
);
%opts = (%default_opts, %opts);

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 => 4755,
BUILD_DATE => "2024-05-26",
BUILD_REVISION => 4757,
BUILD_DATE => "2024-06-03",
};
sub initialize {}