mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-23 04:19:27 +01:00
antiflood: do not check accounts if no account
This commit is contained in:
parent
fa01bdde6f
commit
036ae7cdfb
@ -144,7 +144,7 @@ sub get_flood_account {
|
|||||||
if($mask =~ m/!\Q$user\E@\Q$host\E$/i) {
|
if($mask =~ m/!\Q$user\E@\Q$host\E$/i) {
|
||||||
$self->{pbot}->logger->log("anti-flood: [get-account] $nick!$user\@$host linked to $mask\n");
|
$self->{pbot}->logger->log("anti-flood: [get-account] $nick!$user\@$host linked to $mask\n");
|
||||||
$self->{message_history}->{"$nick!$user\@$host"} = $self->{message_history}->{$mask};
|
$self->{message_history}->{"$nick!$user\@$host"} = $self->{message_history}->{$mask};
|
||||||
$self->check_nickserv_accounts($nick, $self->{message_history}->{$mask}->{nickserv_account});
|
$self->check_nickserv_accounts($nick, $self->{message_history}->{$mask}->{nickserv_account}) if defined $self->{message_history}->{$mask}->{nickserv_account};
|
||||||
return "$nick!$user\@$host";
|
return "$nick!$user\@$host";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ use warnings;
|
|||||||
# These are set automatically by the build/commit script
|
# These are set automatically by the build/commit script
|
||||||
use constant {
|
use constant {
|
||||||
BUILD_NAME => "PBot",
|
BUILD_NAME => "PBot",
|
||||||
BUILD_REVISION => 336,
|
BUILD_REVISION => 337,
|
||||||
BUILD_DATE => "2011-12-12",
|
BUILD_DATE => "2011-12-12",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user