Skip to content

Commit d84553d

Browse files
committed
Fix bug
1 parent 190f211 commit d84553d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function registerJobs() {
2121
const minIdToSearchFor =
2222
lastTrackedHbIds.size === 0
2323
? 0
24-
: Math.min(
24+
: Math.max(
2525
...Array.from(lastTrackedHbIds.values()).map(([num]) => num),
2626
);
2727

0 commit comments

Comments
 (0)