fix: CronPreview step=0 무한루프 방지 #58

병합
HYOJIN bugfix/fix-cronpreview-infinite-loop 에서 develop 로 2 commits 를 머지했습니다 2026-03-17 10:47:23 +09:00
Showing only changes of commit 9ab298e52d - Show all commits

파일 보기

@ -89,6 +89,7 @@ function parseField(field: string, min: number, max: number): number[] | null {
if (stepMatch) {
const [, base, stepStr] = stepMatch;
const step = parseInt(stepStr, 10);
if (step <= 0) return range(min, max);
let start = min;
let end = max;