Commit 4edc8590 authored by Roman Lacko's avatar Roman Lacko
Browse files

fix "return undef" in Iterator

parent 2506ddaa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ sub response {

sub all {
    my ($self) = @_;
    return undef if !$self->{good};
    return if !$self->{good};

    $self->idebug("retrieving all pages");
    while (!$self->{finished} && $self->next_block) {