Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander A Lizarraga authored and Alexander A Lizarraga committed Jan 20, 2023
1 parent 6ca048d commit f166d61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ var shouldStop = false;
var isRunning = false;
var schedule = {
isRunning: false,
start: new Date(new Date().setHours(7, 0, 0).toLocaleString("en-US", { timeZone: "America/Los_Angeles" })),// 7AM IN PST
end: new Date(new Date().setHours(17, 0, 0).toLocaleString("en-US", { timeZone: "America/Los_Angeles" })) // //4PM IN PST
start: new Date(new Date().toLocaleString("en-US", { timeZone: "America/Los_Angeles" }).setHours(7, 0, 0)),// 7AM IN PST
end: new Date(new Date().toLocaleString("en-US", { timeZone: "America/Los_Angeles" }).setHours(17, 0, 0)) // //4PM IN PST
}
//initialize app
const app = express();
Expand Down

0 comments on commit f166d61

Please sign in to comment.