mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 02:45:32 +00:00
doing await right by calling .ConfigureAwait(false)
This commit is contained in:
@@ -25,7 +25,7 @@ namespace Octokit.Internal
|
||||
var nextPageUrl = _info.GetNextPageUrl();
|
||||
if (nextPageUrl == null) return null;
|
||||
|
||||
var response = await _nextPageFunc(nextPageUrl);
|
||||
var response = await _nextPageFunc(nextPageUrl).ConfigureAwait(false);
|
||||
return new ReadOnlyPagedCollection<T>(response, _nextPageFunc);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user