Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewjwbyrne committed Mar 4, 2021
1 parent 68cdc1c commit d5b95f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PrintNode/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public function applyPaginationToUrl($url, $limit, $after, $dir)
if (!\is_numeric($after)) {
throw new \PrintNode\Exception\InvalidArgumentException('After must be a number');
}
$vars[] = sprintf("after=%d", $limit);
$vars[] = sprintf("after=%d", $after);
}

if (!is_null($dir)) {
Expand Down

0 comments on commit d5b95f2

Please sign in to comment.