summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorbw12017-03-07 22:28:22 +0100
committerbw12017-03-07 22:28:22 +0100
commit5aee3660b915afbb3e0c6d4419bfaaaa1eb7420d (patch)
tree39424c01c8802710620a21414b99f0cd7c72830b /scripts
parent4d11f7ff9c1b2fb02b5984e11d0b9ae238383e53 (diff)
downloadscripts.irssi.org-5aee3660b915afbb3e0c6d4419bfaaaa1eb7420d.tar.bz2
[colorkick] fix bug == with eq
Diffstat (limited to 'scripts')
-rw-r--r--scripts/colorkick.pl2
1 files changed, 1 insertions, 1 deletions
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;