Skip to content

Commit 7447582

Browse files
committed
Fields param now case insensitive by forcing ToLower after join
1 parent 68155c9 commit 7447582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ServiceNow/Public/Get-ServiceNowTable.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function Get-ServiceNowTable {
7878
}
7979

8080
if ($Fields) {
81-
$Body.sysparm_fields = $Fields -join ','
81+
$Body.sysparm_fields = ($Fields -join ',').ToLower()
8282
}
8383

8484
# Perform table query and capture results

0 commit comments

Comments
 (0)