Subject: | POE::Component::IRC->new is depracated |
Hi!
POE::Component::IRC is using 'spawn' instead of 'new', which causes a
depracation warning in POE-Component-IRC-Object.
To remove the warning, replace line 30 in POE/Component/IRC/Object.pm
POE::Component::IRC->new($name);
with this:
POE::Component::IRC->spawn(alias=>$name);