Skip to content

Commit

Permalink
feat: make worker timer the default
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeg committed Oct 15, 2024
1 parent 9c4d254 commit fb65ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/ocr/ocr_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2216,7 +2216,7 @@ let timer = stdTimer;
use_half_height.checked = tmp_use_half_height;
allow_video_feed.checked = config.allow_video_feed != false;
focus_alarm.checked = config.focus_alarm != false;
use_worker_for_interval.checked = config.use_worker_for_interval === true;
use_worker_for_interval.checked = config.use_worker_for_interval != false;

if (use_worker_for_interval.checked) {
timer = workerTimer;
Expand Down

0 comments on commit fb65ca4

Please sign in to comment.