diff --git a/app/controllers/search_controller.rb b/app/controllers/search_controller.rb index 25946bf47..d8e665c7f 100644 --- a/app/controllers/search_controller.rb +++ b/app/controllers/search_controller.rb @@ -58,10 +58,10 @@ class SearchController < ApplicationController # do only one query to index search backend if !objects_with_direct_search_index.empty? - items = SearchIndexBackend.search( query, limit, objects_with_direct_search_index ) + items = SearchIndexBackend.search(query, limit, objects_with_direct_search_index) items.each { |item| require item[:type].to_filename - record = Kernel.const_get( item[:type] ).find( item[:id] ) + record = Kernel.const_get(item[:type]).lookup(id: item[:id]) assets = record.assets(assets) result.push item }