lib/picky/query/or.rb in picky-4.25.1 vs lib/picky/query/or.rb in picky-4.25.2
- old
+ new
@@ -22,9 +22,13 @@
combinations = @tokens.inject([]) do |result, token|
result + token.possible_combinations(categories)
end
combinations.empty? && combinations || [Query::Combination::Or.new(combinations)]
end
+
+ def symbolize!
+ @tokens.symbolize
+ end
end
end
\ No newline at end of file