summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ASM/Event.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ASM/Event.pm b/lib/ASM/Event.pm
index b2ed5ac..b8b4d6c 100644
--- a/lib/ASM/Event.pm
+++ b/lib/ASM/Event.pm
@@ -901,8 +901,8 @@ sub on_quietlistend
", have used " . $cputime . " of CPU time" .
", have sent $tx of data, and received $rx of data.");
my %x = ();
- foreach my $c (@{$::settings->{autojoins}}) { $x{$c} = 1; }
- foreach my $cx (keys %::sc) { delete $x{$cx}; }
+ foreach my $c (@{$::settings->{autojoins}}) { $x{lc $c} = 1; }
+ foreach my $cx (keys %::sc) { delete $x{lc $cx}; }
if (scalar (keys %x)) {
$conn->privmsg($::settings->{masterchan}, "Syncing appears to have failed for " . ASM::Util->commaAndify(keys %x)) unless $::no_autojoins;
}