mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 18:35:35 +00:00
Remove the redundant ApiInfo property
This commit is contained in:
@@ -27,7 +27,7 @@ namespace Octokit.Reactive.Internal
|
||||
{
|
||||
return getPageFunc(uri, parameters).Expand(resp =>
|
||||
{
|
||||
var nextPageUrl = resp.ApiInfo.GetNextPageUrl();
|
||||
var nextPageUrl = resp.HttpResponse.ApiInfo.GetNextPageUrl();
|
||||
return nextPageUrl == null
|
||||
? Observable.Empty<IApiResponse<List<T>>>()
|
||||
: Observable.Defer(() => getPageFunc(nextPageUrl, null));
|
||||
|
||||
Reference in New Issue
Block a user