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 b172eeb commit 366f8c0Copy full SHA for 366f8c0
module/Public/Invoke-nbApi.ps1
@@ -73,7 +73,7 @@ function Invoke-nbApi {
73
)
74
$PSCmdlet.ThrowTerminatingError($errorRecord)
75
}
76
- if ($Body.GetType().FullName -eq [hashtable].FullName)
+ if ($null -ne $Body -and $Body.GetType().FullName -eq [hashtable].FullName)
77
{
78
Write-Verbose -Message "Converting the hashtable body into an object"
79
$Body = [PSCustomObject]$Body
module/Version
@@ -1 +1 @@
1
-2.3.4
+2.3.5
module/powerbox.psd1
@@ -12,7 +12,7 @@
12
RootModule = 'powerbox.psm1'
13
14
# Version number of this module.
15
- ModuleVersion = '2.3.4'
+ ModuleVersion = '2.3.5'
16
17
# Supported PSEditions
18
# CompatiblePSEditions = @()
0 commit comments