Skip to content

Commit

Permalink
fix forward tracking bug
Browse files Browse the repository at this point in the history
  • Loading branch information
daveajones committed Dec 1, 2021
1 parent c0bf362 commit 718bc63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "helipad"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
5 changes: 4 additions & 1 deletion home.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ $(document).ready(function () {
if(typeof boostIndex !== "number") {
noIndex = true;
}
if(startIndex === null) {
boostIndex = "";
}
if (typeof max !== "number") {
max = 0;
}
Expand Down Expand Up @@ -195,7 +198,7 @@ $(document).ready(function () {

//Set a periodic checker for new boosts
setInterval(function () {
getBoosts();
getBoosts(null, 20, true);
}, 7000);

});
Expand Down

0 comments on commit 718bc63

Please sign in to comment.