app/volt/tasks/live_query/data_store.rb in volt-0.7.17 vs app/volt/tasks/live_query/data_store.rb in volt-0.7.18
- old
+ new
@@ -10,10 +10,10 @@
puts "QUERY: #{collection} - #{query.inspect}"
query = query.dup
query.keys.each do |key|
if key =~ /_id$/
- query[key] = BSON::ObjectId(query[key])
+ # query[key] = BSON::ObjectId(query[key])
end
end
@@db[collection].find(query).to_a
end