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 930b4d9 commit 901061aCopy full SHA for 901061a
source/Public/Invoke-FabricRestMethod.ps1
@@ -191,7 +191,7 @@ Function Invoke-FabricRestMethod {
191
if ($null -ne $response) {
192
$continuationToken = Get-FabricContinuationToken -Response $response
193
194
- if ($ExtractValue -eq 'Auto' -and $response.value -ne $null) {
+ if ($ExtractValue -eq 'Auto' -and $null -ne $response.value) {
195
$ExtractValue = 'True'
196
}
197
if ($ExtractValue -eq 'True') {
source/Public/SQL Database/Get-FabricSQLDatabase.ps1
@@ -76,7 +76,6 @@ function Get-FabricSQLDatabase
76
77
begin
78
{
79
- $return = @()
80
Confirm-TokenState
81
82
if ($PSBoundParameters.ContainsKey("SQLDatabaseName") -and $PSBoundParameters.ContainsKey("SQLDatabaseId"))
0 commit comments