3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-02-01 23:14:09 +01:00

Enable multi-prefix IRCv3 extension

This commit is contained in:
Pragmatic Software 2023-02-01 14:48:12 -08:00
parent 6240aee0a0
commit a173858fb8
2 changed files with 3 additions and 3 deletions

View File

@ -97,13 +97,13 @@ sub request_caps {
'account-tag' => 1,
'extended-join' => 1,
'message-tags' => 1,
'multi-prefix' => 1,
# sasl is gated by the irc.sasl registry entry instead
# TODO: unsupported capabilities worth looking into
'away-notify' => 0,
'chghost' => 0,
'identify-msg' => 0,
'multi-prefix' => 0,
);
foreach my $cap (keys $self->{pbot}->{irc_capabilities_available}->%*) {

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 => 4610,
BUILD_DATE => "2023-01-31",
BUILD_REVISION => 4611,
BUILD_DATE => "2023-02-01",
};
sub initialize {}