We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 729f5ab commit bf67640Copy full SHA for bf67640
GitHubIssues.ps1
@@ -192,7 +192,7 @@ function Get-GitHubIssue
192
{
193
$uriFragment = "/repos/$OwnerName/$RepositoryName/issues"
194
$description = "Getting issues for $RepositoryName"
195
- if (-not [String]::IsNullOrEmpty($Issue))
+ if ($PSBoundParameters.ContainsKey('Issue'))
196
197
$uriFragment = $uriFragment + "/$Issue"
198
$description = "Getting issue $Issue for $RepositoryName"
0 commit comments