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
1 changed files with 1 additions and 1 deletions

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;
}