3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Plugins/UrlTitles: fix typo

This commit is contained in:
Pragmatic Software 2020-03-04 15:38:53 -08:00
parent 326fac5a6e
commit ffdebc3f2d

View File

@ -38,7 +38,7 @@ sub show_url_titles {
return 0 if not $msg =~ m/https?:\/\/[^\s]/;
return 0 if $event->{interpreted};
if ($self->{pbot}->{ignorelist}->is_ignore($channel, "$nick!$user\@$host")) {
if ($self->{pbot}->{ignorelist}->is_ignored($channel, "$nick!$user\@$host")) {
return 0;
}