Skip to content

Commit

Permalink
Fixes a nasty regression
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielGilbert committed Nov 10, 2023
1 parent 6347c08 commit a185c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/settings/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function save_options() {
{
var result = await getScheduleFromCard(weekday);
if (schedule.count == null)
schedule[count.toString()] = new Array({start: result.start, pause: result.pause, hours: result.hours}) ;
schedule[count.toString()] = new Array({start: result.start, startPause: result.startPause, pause: result.pause, hours: result.hours}) ;
}
else
{
Expand Down

0 comments on commit a185c16

Please sign in to comment.