add httparty option config
This commit is contained in:
@@ -3,7 +3,7 @@ class TumblrApiClient < Struct.new(:api_key)
|
||||
base_uri "https://api.tumblr.com/v2/blog/"
|
||||
|
||||
def posts(blog_name, post_id)
|
||||
response = self.class.get("/#{blog_name}/posts", query: { id: post_id, api_key: api_key })
|
||||
response = self.class.get("/#{blog_name}/posts", Danbooru.config.httparty_options.merge(query: { id: post_id, api_key: api_key }))
|
||||
response.parsed_response.with_indifferent_access[:response]
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user