Skip to content

Commit

Permalink
Fix 'ItemList.next' method (use client.access_token as request proxy)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustavo Machado Campagnani Gama committed Dec 23, 2010
1 parent 57511fb commit 85cb82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/google-reader/item-list.rb
Expand Up @@ -42,7 +42,7 @@ def next?
# fetch next batch of items, if available
def next(params = {})
next? or return nil
resp = @client.get(merge_query_string(@url, params.merge({:continuation => @continuation})))
resp = @client.access_token.get(merge_query_string(@url, params.merge({:continuation => @continuation})))
self.class.new(@client, resp.body)
end
alias :more :next
Expand Down

0 comments on commit 85cb82a

Please sign in to comment.