Skip to content

Commit

Permalink
Fixed filter attributes push
Browse files Browse the repository at this point in the history
  • Loading branch information
kurokikaze committed Jan 13, 2012
1 parent c9ae7ad commit 795d9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion limestone.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ exports.SphinxClient = function() {
request.push.int32(query.filters.length);
for (var filter in query.filters) {
request.push.int32(filter.attr.length);
request.push_lstring(filter.attr);
request.push.lstring(filter.attr);
request.push.int32(filter.type);
switch (filter.type) {
case Sphinx.filterTypes.VALUES:
Expand Down

0 comments on commit 795d9cf

Please sign in to comment.