[FEAT] Adds support for enterprise audit logs

This commit is contained in:
gitasaurus
2023-05-09 11:28:58 -04:00
committed by GitHub
parent ecf5af499e
commit 3c82ff359c
31 changed files with 1090 additions and 35 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ namespace Octokit.Internal
public async Task<IReadOnlyPagedCollection<T>> GetNextPage()
{
var nextPageUrl = _info.GetNextPageUrl();
var nextPageUrl = _info?.GetNextPageUrl();
if (nextPageUrl == null) return null;
var maybeTask = _nextPageFunc(nextPageUrl);