Skip Menu |

This queue is for tickets about the POE-Component-IRC CPAN distribution.

Report information
The Basics
Id: 32271
Status: resolved
Worked: 10 min
Priority: 0/
Queue: POE-Component-IRC

People
Owner: BINGOS [...] cpan.org
Requestors: hinrik.sig [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: Typo in NickReclaim.pm
I found a typo that causes the NickReclaim to unnecessarily try to change to its current nickname.
Subject: nickreclaim.diff
--- NickReclaim.pm 2008-01-13 07:53:12.000000000 +0000 +++ NickReclaim.pm.new 2008-01-13 07:53:00.000000000 +0000 @@ -91,7 +91,7 @@ #...and it's not a startup routine where ->nick_name cannot #...be used (and needs to be reclaimed) return PCI_EAT_NONE - if $self->{_did_start} and $irc->nick_name() eq $offending; + if $self->{_did_start} and $irc->nick_name() ne $offending; # we will store the nick with the underscore in ->{_claims}... #...so in sub U_nick{} we would know which ones were caused...
Many thanks. Patch applied.