Skip to content

Commit

Permalink
Fix off-by-1 month.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiefaye committed Nov 1, 2024
1 parent 9525b7b commit 66a6014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/MidiRequester.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class Requester {
d.setMinutes(minutes);
d.setSeconds(seconds);
d.setYear(year);
d.setMonth(month);
d.setMonth(month - 1);
d.setDate(day);
}
let fe = {
Expand Down

0 comments on commit 66a6014

Please sign in to comment.