lib/active_remote/search.rb in active_remote-3.2.0 vs lib/active_remote/search.rb in active_remote-3.2.1
- old
+ new
@@ -86,10 +86,10 @@
# Tag.search(Generic::Remote::TagRequest.new(:name => 'foo'))
#
def search(args)
args = validate_search_args!(args)
- response = rpc.execute(:search, args)
+ response = remote_call(:search, args)
if response.respond_to?(:records)
records = serialize_records(response.records)
end
end