Skip to content
This repository has been archived by the owner on Jan 3, 2022. It is now read-only.

Commit

Permalink
fix timer
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavdc committed May 2, 2021
1 parent e075800 commit 6a4892f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function scheduleCowinPinger(params) {
pingCount += 1;
pingCowin(params);
console.log("Ping Count - ", pingCount);
}, params.interval * 6000);
}, params.interval * 60000);
}

function pingCowin({ key, hook, age, districtId, appointmentsListLimit, date }) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cowin-pinger",
"version": "0.0.3",
"version": "0.0.4",
"description": "Get notified on your phone when there is a vaccine slot available at your location, by running a script on your computer. Uses Cowin portal's public API.",
"main": "app.js",
"scripts": {
Expand Down

0 comments on commit 6a4892f

Please sign in to comment.