diff options
author | Teddy Wing | 2022-05-08 01:45:43 +0200 |
---|---|---|
committer | Teddy Wing | 2022-05-08 01:45:43 +0200 |
commit | d1eef12439e17dc20364ada07625d3fc7b28f119 (patch) | |
tree | b35bd1fa6d6ec5b1a334c859baca4bfe0ad85a2d | |
parent | 12f20a6e2324bf17212bc4e95c6cbb91d853fe60 (diff) | |
download | wajir-d1eef12439e17dc20364ada07625d3fc7b28f119.tar.bz2 |
run: Debug multi-page
Need to set the `startAt` field when making the request.
-rw-r--r-- | src/main.lisp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.lisp b/src/main.lisp index 2e80fc7..98fe754 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -32,6 +32,11 @@ (max-results (gethash "maxResults" response)) (total (gethash "total" response))) + (format t "start-at: ~A max-results: ~A total: ~A~%" + start-at + max-results + total) + (loop for issue across (gethash "issues" response) do (watch-issue issue)) |