Subject: | Filerts are not working |
Filters do not work at all.
I've had a quick glance at at phython api that comes with spinx and
discovered you forgot a filed in the file section of the protocol.
Just changing
pack ( "N*", scalar(@$values), @$values );
to
# excludes are not yet supported, thus the 0
pack ( "N*", scalar(@$values), @$values, 0 );
in line 846 of Search.pm seems to fix the issue.
Cheers,
Sebastian