From 5aee3660b915afbb3e0c6d4419bfaaaa1eb7420d Mon Sep 17 00:00:00 2001 From: bw1 Date: Tue, 7 Mar 2017 22:28:22 +0100 Subject: [colorkick] fix bug == with eq --- scripts/colorkick.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/colorkick.pl b/scripts/colorkick.pl index de7e153..c28e420 100644 --- a/scripts/colorkick.pl +++ b/scripts/colorkick.pl @@ -40,7 +40,7 @@ sub catch_junk for my $channel (split(/ /, Irssi::settings_get_str('colorkick_channels'))) { - if ($target == $channel) + if ($target eq $channel) { $valid_channel = 1; last; -- cgit v1.2.3