Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/odata/query/result.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def initialize(query, result)
def each(&block)
process_results(&block)
until next_page.nil?
result = service.execute(next_page_url)
service.execute(next_page_url)
process_results(&block)
end
end
Expand Down Expand Up @@ -55,4 +55,4 @@ def next_page_url
end
end
end
end
end