From 45b3bd1db465cd2f1bbc1b7afe2216f31d77ce39 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Tue, 10 Jun 2025 08:54:29 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Update=20`Get-GitHubA?= =?UTF-8?q?ppInstallableOrganization`=20to=20handle=20multiple=20responses?= =?UTF-8?q?=20correctly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Apps/GitHub Apps/Get-GitHubAppInstallableOrganization.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions/private/Apps/GitHub Apps/Get-GitHubAppInstallableOrganization.ps1 b/src/functions/private/Apps/GitHub Apps/Get-GitHubAppInstallableOrganization.ps1 index b1ae6cac7..a53e7eca8 100644 --- a/src/functions/private/Apps/GitHub Apps/Get-GitHubAppInstallableOrganization.ps1 +++ b/src/functions/private/Apps/GitHub Apps/Get-GitHubAppInstallableOrganization.ps1 @@ -47,7 +47,7 @@ } Invoke-GitHubAPI @inputObject | ForEach-Object { - [GitHubOrganization]::new($_.Response) + $_.Response | ForEach-Object { [GitHubOrganization]::new($_) } } }