On Wed Apr 19 16:15:57 2017, xcdcdxcx@gmail.com wrote:
Show quoted text> '0' is a valid name for an archive and this should not happen.
>
> The bug is caused by this line in sub iter:
>
> my $filename = shift or return;
>
>
> I think it is better written as:
>
>
> my $filename = shift;
>
> return unless defined $filename;
Thanks!
I have made that change and uploaded 2.26 to CPAN.