Skip to content

Commit

Permalink
fix: Copilot mistake :-|
Browse files Browse the repository at this point in the history
  • Loading branch information
jformacek committed Mar 6, 2024
1 parent 0e590d6 commit c6eea05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Module/ExoHelper/ExoHelper.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'ExoHelper.psm1'

# Version number of this module.
ModuleVersion = '1.1.1'
ModuleVersion = '1.1.2'

# Supported PSEditions
CompatiblePSEditions = @('Desktop', 'Core')
Expand Down
3 changes: 1 addition & 2 deletions Module/ExoHelper/ExoHelper.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,8 @@ This command retrieves mailbox of user JohnDoe and returns just netId property
{
if($psversionTable.PSVersion -gt '7.4') #7.4+ supports ProgressAction
{
$splat['SkipHeaderValidation'] = $true
$splat['ProgressAction'] = 'SilentlyContinue'
}
$splat['ProgressAction'] = 'SilentlyContinue'
}
$response = Invoke-WebRequest @splat
#we may process the headers in the future to see rate limit remaining, etc.
Expand Down

0 comments on commit c6eea05

Please sign in to comment.