From: Vincent Pit Date: Fri, 20 Nov 2015 17:00:19 +0000 (-0200) Subject: Also undef %fetched when clones.pl is unloaded X-Git-Url: http://git.vpit.fr/?p=perl%2Fscripts%2Fxchat.git;a=commitdiff_plain;h=edef44980a97323b66add1052bc737fe1e11975f Also undef %fetched when clones.pl is unloaded --- diff --git a/clones.pl b/clones.pl index 46ca4d6..c1e0dd9 100755 --- a/clones.pl +++ b/clones.pl @@ -314,7 +314,10 @@ $ph = Xchat::XPI->new( author => 'Vincent Pit (VPIT)', email => 'perl@profvince.com', url => 'http://www.profvince.com', - unload => sub { undef %users }, + unload => sub { + undef %users; + undef %fetched; + }, ); 1;