We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ae087 commit e256cdaCopy full SHA for e256cda
1 file changed
lib/github_api/users/followers.rb
@@ -20,9 +20,9 @@ class Users::Followers < API
20
def list(user_name=nil, params={})
21
_normalize_params_keys(params)
22
response = if user_name
23
- get("/users/#{user_name}/followers", params)
+ get_request("/users/#{user_name}/followers", params)
24
else
25
- get("/user/followers", params)
+ get_request("/user/followers", params)
26
end
27
return response unless block_given?
28
response.each { |el| yield el }
0 commit comments