Forum Discussion
Cole_McDonald
Professor
6 years agoI have an error in the Get-LMRestAPIObjectListing function. I'm calculating the offset as:
$offset = ($counter * $size) + 1
it should be:
$offset = $counter * $size
Adding 1 at the outset was skipping item 0 - rookie mistake ;)