Commit 01335d7c authored by Phil Hughes's avatar Phil Hughes

Fix issue with paging not working sometimes

parent 4c544cf6
......@@ -47,7 +47,7 @@ class List {
}
nextPage () {
if (this.issues.length / 20 === this.page) {
if (Math.floor(this.issues.length / 20) === this.page) {
this.page++;
return this.getIssues(false);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment