diff --git a/PCK-Studio/Internal/App/ApplicationScope.cs b/PCK-Studio/Internal/App/ApplicationScope.cs index 19f7109e..c6b9762f 100644 --- a/PCK-Studio/Internal/App/ApplicationScope.cs +++ b/PCK-Studio/Internal/App/ApplicationScope.cs @@ -56,7 +56,7 @@ namespace PckStudio.Internal.App var ghClient = new Octokit.GitHubClient(new Octokit.ProductHeaderValue(Application.ProductName + "Credits")); Task> allContributorsAct = ghClient.Repository.GetAllContributors("PhoenixARC", "-PCK-Studio"); allContributorsAct.Wait(); - Contributors = allContributorsAct.Result.ToArray(); + Contributors = allContributorsAct.Result.ToArray() ?? Array.Empty(); } } } \ No newline at end of file