Skip to content

Commit

Permalink
Actually fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
nayakrujul committed Jul 4, 2024
1 parent ef28ab6 commit e2d20dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/folders-classic.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ function set_quickfire_high_score(score) {
let currenths = get_cookies()["vtp6HighScore_quick_fire"];
if (currenths === undefined || score > +currenths.slice(0, -1)) {
document.cookie =
`vtp6HighScore_quickFire=${score.toFixed(1)}s;` +
`vtp6HighScore_quick_fire=${score};` +
`domain=vtp6.rujulnayak.com;path=/;max-age=31536000`;
return true;
} else {
Expand Down

0 comments on commit e2d20dc

Please sign in to comment.