Skip to content

Commit d3d3a38

Browse files
committed
fix: ci
1 parent b107ae3 commit d3d3a38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ function parseInterval(from: number, interval: number) {
137137
return from;
138138
}
139139
const now = Date.now();
140-
while (now > from) {
140+
while (now >= from) {
141141
from += interval;
142142
}
143143
return from;

0 commit comments

Comments
 (0)