Skip to content

Commit

Permalink
Merge branch 'main' into 3dSkinRenderer
Browse files Browse the repository at this point in the history
  • Loading branch information
NessieHax committed Oct 16, 2024
2 parents 632431d + cb04173 commit b9d7ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PCK-Studio/Internal/App/ApplicationScope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ internal static void GetContributors()
var ghClient = new Octokit.GitHubClient(new Octokit.ProductHeaderValue(Application.ProductName + "Credits"));
Task<IReadOnlyList<Octokit.RepositoryContributor>> allContributorsAct = ghClient.Repository.GetAllContributors("PhoenixARC", "-PCK-Studio");
allContributorsAct.Wait();
Contributors = allContributorsAct.Result.ToArray();
Contributors = allContributorsAct.Result.ToArray() ?? Array.Empty<Octokit.RepositoryContributor>();
}
}
}

0 comments on commit b9d7ceb

Please sign in to comment.