Skip to content

Commit

Permalink
paging fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinTegelaar committed Feb 7, 2025
1 parent aca4768 commit cb4a17c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Function Invoke-ListTeamsVoice {
}
$skip = $skip + 999
$Data
} while ( $Data.count % 999 -eq 0 )
} while ($data.Count -eq 999)
$StatusCode = [HttpStatusCode]::OK
} catch {
$ErrorMessage = Get-NormalizedError -Message $_.Exception.Message
Expand Down

0 comments on commit cb4a17c

Please sign in to comment.