3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

IRCHandlers: correct error message typo irc.password -> irc.identify_password

This commit is contained in:
Pragmatic Software 2021-06-12 10:26:52 -07:00
parent 0d56e336be
commit 34d347de12

View File

@ -552,7 +552,7 @@ sub on_sasl_authenticate {
my $password = $self->{pbot}->{registry}->get_value('irc', 'identify_password');
if (not defined $password or not length $password) {
$self->{pbot}->{logger}->log("Error: Registry entry irc.password is not set.\n");
$self->{pbot}->{logger}->log("Error: Registry entry irc.identify_password is not set.\n");
$self->{pbot}->exit;
}