lib/alma/bib.rb in alma-0.4.2 vs lib/alma/bib.rb in alma-0.5.0
- old
+ new
@@ -8,10 +8,10 @@
def self.find(ids, args)
get_bibs(ids, args)
end
def self.get_bibs(ids, args = {})
- response = HTTParty.get(
+ response = Net.get(
self.bibs_base_path,
query: { mms_id: ids_from_array(ids) }.merge(args),
headers:,
timeout:
)