Skip Menu |

This queue is for tickets about the Search-GIN CPAN distribution.

Report information
The Basics
Id: 54935
Status: resolved
Priority: 0/
Queue: Search-GIN

People
Owner: Nobody in particular
Requestors: michael [...] zedeler.dk
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.03
Fixed in: (no value)



Subject: Search::GIN::Multiplex defunct
It seems that in Search::GIN::Multiplex, the line return map { $_->extract_values } @{ $self->extractors }; should read return map { $_->extract_values(@args) } @{ $self->extractors }; I have no idea how this code could ever work before. Maybe there is something I didn't understand?
Actually, it should be: return map { $_->extract_values($obj, @args) } @{ $self->extractors }; But this was fixed and uploaded in version 0.04 which is already on CPAN.